如何为MXML文件制作类ASDoc

时间:2015-01-15 08:39:25

标签: flex mxml mxmlc

有没有办法为类似于AS3类的ASDoc的MXML文档添加类ASDoc?

MyClass.as ASDoc:

/**
 *  This shows up when hovering over the class in Flash Builder. 
 *  The Group class is the base container class for visual elements.
 *  <p>The <code>&lt;s:Group&gt;</code> tag inherits all of the tag 
 *  attributes of its superclass and adds the following tag attributes:</p>
 *
 *
 *  @see spark.components.DataGroup
 *  @see spark.components.SkinnableContainer
 *
 */
public class MyClass extends Group {

}

MyClass.mxml ASDoc:

<s:Group xmlns:fx="http://ns.adobe.com/mxml/2009" 
         xmlns:s="library://ns.adobe.com/flex/spark">

    <!---
    ASDoc???
    Does this show up when hovering over the class in Flash Builder? 
    A label, text input and button that is used to select a file or a folder

    -->
</s:Group>

1 个答案:

答案 0 :(得分:1)

是的,有可能并且您接近解决方案:

<!--- This shows up when hovering over the class in Flash Builder! -->
<s:Group xmlns:fx="http://ns.adobe.com/mxml/2009" 
    xmlns:s="library://ns.adobe.com/flex/spark">
</s:Group>

另请参阅:Documenting MXML files