`
柴秉承
  • 浏览: 87507 次
  • 性别: Icon_minigender_1
  • 来自: 厦门
社区版块
存档分类
最新评论

ASDOC注释标签

阅读更多

ASDOC注释标签

 

ASDoc tag Description Example
@copy reference Copies an ASDoc comment from the referenced location. The main description, @param, and @return content is copied; other tags are not copied.

 

You typically use the @copy tag to copy information from a source class or interface not in the inheritance list of the destination class. If the source class or interface is in the inheritance list, use the @inheritDoc tag instead.

You can add content to the ASDoc comment before the @copy tag.

Specify the location by using the same syntax as you do for the @see tag. For more information, see Using the @see tag.

@copy #stop

 

@copy MovieClip#stop

@default value Specifies the default value for a property, style, or effect. The ASDoc tool automatically creates a sentence in the following form when it encounters an @defaulttag:

 

The default value is value.

@default 0xCCCCCC
@eventType package.class.CONSTANT@eventType String Use the first form in a comment for an [Event] metadata tag. It specifies the constant that defines the value of the Event.type property of the event object associated with the event. The ASDoc tool copies the description of the event constant to the referencing class.

 

Use the second form in the comment for the constant definition. It specifies the name of the event associated with the constant. If the tag is omitted, ASDoc cannot copy the constant's comment to a referencing class.

See Documenting effects, events, and styles
@example exampleText Applies style properties, generates a heading, and puts the code example in the correct location. Enclose the code in <listing version="3.0"></listing> tags.

 

Whitespace formatting is preserved and the code is displayed in a gray, horizontally scrolling box.

@example The following code sets the volume level for your sound:

 

<listing version="3.0">

var mySound:Sound = new Sound(); mySound.setVolume(VOL_HIGH);</listing>

@exampleText string Use this tag in an ASDoc comment in an external example file that is referenced by the@example tag. The ASDoc comment must precede the first line of the example, or follow the last line of the example.
External example files support one comment before and one comment after example code.
/** 
* This text does not appear 
* in the output. 
* @exampleText But this does.*/
@inheritDoc Use this tag in the comment of an overridden method or property. It copies the comment from the superclass into the subclass, or from an interface implemented by the subclass.
The main ASDoc comment, @param, and @return content are copied; other tags are not. You can add content to the comment before the @inheritDoc tag.
When you include this tag, ASdoc uses the following search order:
1. Interfaces implemented by the current class (in no particular order) and all of their base-interfaces.
2. Immediate superclass of current class.
3. Interfaces of immediate superclass and all of their base-interfaces.
4. Repeat steps 2 and 3 until the Object class is reached.
You can also use the @copy tag, but the @copy tag is for copying information from a source class or interface that is not in the inheritance chain of the subclass.
@inheritDoc
@internal text Hides the text attached to the tag in the generated output. The hidden text can be used for internal comments. @internal Please do not publicize the undocumented use of the third parameter in this method.
@param paramName description Adds a descriptive comment to a method parameter. The paramName argument must match a parameter definition in the method signature. @param fileName The name of the file to load.
@private Exclude the element from the generated output.
To omit an entire class, put the @private tag in the ASDoc comment for the class; to omit a single class element, put the @private tag in the ASDoc comment for the element.
@private
@return description Adds a Returns section to a method description with the specified text. ASDoc automatically determines the data type of the return value. @return The translated message.
@see reference [displayText] Adds a See Also heading with a link to a class element. For more information, see Using the @see tag.
Do not include HTML formatting characters in the arguments to the @see tag.
@see flash.display.MovieClip
@throws package.class.className description Documents an error that a method can throw. @throws SecurityError Local untrusted SWFs may not communicate with the Internet.

 


分享到:
评论

相关推荐

    ASDoc标签知识点.pdf

    它通过解析源代码中的特殊注释(即 ASDoc 标签)来生成详细、易读的文档。以下是一些主要的 ASDoc 标签及其用法: 1. `@param paramName description`:这个标签用于描述函数或方法的参数。`paramName` 应与函数...

    教案ASDoc标签材料.pdf

    在ActionScript开发中,使用ASDoc标签能够帮助开发者更好地理解和使用库、类和函数。以下是一些主要的ASDoc标签及其用途: 1. `@param paramName description`:这个标签用于为函数或方法的参数提供描述。`param...

    asdoc.zip

    这些注释使用特殊的 ASDoc 注释语法,如`@param`, `@return`, `@event`等,它们将直接出现在生成的文档中。 3. ASDoc与版本控制:将ASDoc生成的文档纳入版本控制系统,可以帮助团队跟踪代码变更,并在不同版本间...

    Flex Library AsDoc Demo

    4. **添加注释** - 在你的Flex库项目中,为每个类、函数、变量等添加适当的AsDoc注释。这些注释使用特殊的格式,如`@class`、`@function`、`@param`、`@return`等。 5. **生成文档** - 执行AsDoc命令后,它会扫描源...

    终于成功使用asdoc生成了文档

    首先,asdoc是ActionScript文档生成器,它能够解析源代码注释并创建HTML格式的API文档。这对于开源项目或者内部团队协作来说非常有用,因为它可以提供清晰的接口参考,帮助开发者快速了解类库和组件的使用方式。 ...

    ASDoc生成ActionScript的API类文档

    - **多语言支持**:如果项目中有多种语言版本的注释,ASDoc也能很好地处理这些情况,生成多语言版本的文档。 #### 七、总结 ASDoc是一款功能强大且易于使用的工具,对于任何使用ActionScript进行开发的项目来说都...

    sina-microblog-api-asdoc-rc.zip

    microblog-api-asdoc-rc.zip" 的标签直接反映了文档的核心内容,即与新浪微薄相关的API接口以及ASDoc格式的文档,ASDoc是Adobe开发的一种工具,用于生成ActionScript代码的文档,类似于Java的Javadoc或C#的XML注释。...

    Flash-Builder-里利用ASDOC生成在线API文档配置.doc编程资料

    Flash-Builder-里利用ASDOC生成在线API文档配置.doc

    Flash builer添加类注释格式

    在Flash Builder中,类注释的格式尤为重要,因为它们不仅帮助其他开发者理解类的功能,还能被ASDoc这样的工具识别,自动生成详细的API文档。 #### 2. Flash Builder中的类注释自动化 在Flash Builder环境中,可以...

    制作中文asDoc api 模板文件

    以flexbuilder为例,在你安装的目录下X:\Program Files\Adobe\Flex Builder 3\sdks\3.2.0\asdoc\templates。改文件夹就是控制稳定框架本地化的。你只要办里面的相关文字翻译为中文就可以了。关联文件就是xsl格式的...

    Flex帮助文档(html格式)制作及ASDoc的使用

    ASDoc工具会分析源代码中的注释,并根据这些注释生成相应的API文档。 4. 查看和修改生成的文档。ASDoc生成的文档通常是一个包含index.html的文件夹,通过浏览器打开这个HTML文件就可以查看文档内容。如果发现有错误...

    asdoc-4.16.0.jar

    java运行依赖jar包

    grunt-asdoc:一个Grunt任务插件,用于为Adobe FlexActionScriptMXMLFLVetc生成文档。 ApacheAdobe Flex SDK中带有`asdoc`工具的应用程序

    Apache / Adob​​e Flex SDK中带有asdoc工具的应用程序。入门这个插件需要~0.4.2 如果您以前从未使用过 ,请务必查看《指南》,因为它说明了如何创建以及安装和使用Grunt插件。 熟悉该过程后,可以使用以下命令...

    生成AS3版CHM官方文档项目完整源码

    ASDoc通过分析源代码中的类、函数、变量和注释,自动生成HTML格式的文档,便于开发者理解和使用API。在本项目中,ASDoc被用来将Adobe官方的AS3 API离线文档转换为更易于查阅的CHM格式。 CHM(Compiled HTML Help)...

    flex快捷键

    `Alt+↑(↓)`用于移动行,`Ctrl+Alt+↑(↓)`克隆行,`Ctrl+D`删除行,`Ctrl+Shift+D`添加ASDoc注释,`Ctrl+Shift+C`添加或移除块注释,`Ctrl+/`进行行注释,`Ctrl+Shift+P`匹配并跳转到括号。 通过熟练掌握这些...

    flex builder 3 格式化代码

    这个插件能帮助你快速地为函数、类或整个文件生成标准的ASDoc格式注释,从而节省大量手动输入的时间。 在实际开发中,良好的代码风格和注释不仅有助于个人的编程效率,更是在团队协作中减少误解和沟通成本的关键。...

    Flex SDK 编码习惯和最佳实践

    - **注释风格**:使用标准的ASDoc注释格式,如`/** ... */`,提供对类、方法、属性等的详细描述。 - **文档完整性**:确保所有公共接口都有完整的文档,包括参数、返回值和异常的说明。 - **示例代码**:提供使用...

    FlexBuilder代码格式化方法

    4. **ASDoc注释**:FlexBuilder也支持生成ASDoc,这是一种类似JavaDoc的注释方式,用于生成API文档。`FlexASDocGenCommand_0.7.1.jar`可能是一个用于生成ASDoc的命令行工具。 5. **插件和扩展**:如`...

Global site tag (gtag.js) - Google Analytics