开发者

Adding XML to asdoc function comments in flex?

开发者 https://www.devze.com 2023-02-20 16:03 出处:网络
How do you add sample xml to asdoc function/class comments in Flex? They can obviously be added, but they wont show in the hover asdoc comments in Flash Builder 4.

How do you add sample xml to asdoc function/class comments in Flex? They can obviously be added, but they wont show in the hover asdoc comments in Flash Builder 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="trans开发者_JAVA技巧action".............
* </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;

0

精彩评论

暂无评论...
验证码 换一张
取 消