質問

Flexでasdoc関数/クラスのコメントにサンプルXMLを追加しますか?それらは明らかに追加することができますが、それらはFlash Builder 4. でのHover Asdocコメントに表示されません。

/**
* 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