1

如何将示例 xml 添加到 Flex 中的 asdoc 函数/类注释?它们显然可以添加,但它们不会显示在 Flash Builder 4 中的悬停 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
{           
}
4

1 回答 1

3

用 & lt; 转义 '<' 和 '>' 和> (注意:去掉空格)

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

于 2011-03-30T17:39:09.677 回答