2015-01-15 10 views
0

Есть ли способ добавить класс ASDoc для документа MXML, аналогичный ASDoc для класса AS3?Как создать класс ASDoc для файла MXML

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

Да, это возможно, и вы близки к решению:

<!--- 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