문제

샘플 XML을 asdoc 함수 / 클래스의 주석에 어떻게 추가합니까?그들은 분명히 추가 될 수 있지만 플래시 빌더의 ASDOC 주석에 표시되지 않습니다. 4.

/**
* Generates a ChangeAccount in xml format when they are being saved 
* 
* <p>Will be in the following form  
*  Use http://xmlindent.com/ to view pretty xml format)
*  
*  <ChangeAccount History="w" Alias="transaction".............
* </p>
*
* @return XML
*/
public function get xml():XML
{           
}
.

도움이 되었습니까?

해결책

Escape the '<' and '>' with & lt; and & gt; ( Note: remove the spaces )

& lt;ChangeAccount History="w" Alias="transaction"............. /& gt;

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top