ASDOC注释标签

本文详细介绍了ASDoc注释的各种标签及其用法,包括@copyreference用于复制注释,@defaultvalue定义默认值,@eventType定义事件类型,@example展示代码示例,@inheritDoc用于覆盖方法或属性的注释,@internal隐藏文本,@param描述参数,@private排除元素,@return定义返回值,@see创建链接,@throws记录可能抛出的错误。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

ASDOC注释标签

 

ASDoc tagDescriptionExample
@copy referenceCopies 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 valueSpecifies 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 exampleTextApplies 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 stringUse 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.*/
@inheritDocUse 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 textHides 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 descriptionAdds 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.
@privateExclude 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 descriptionAdds 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 descriptionDocuments an error that a method can throw.@throws SecurityError Local untrusted SWFs may not communicate with the Internet.

 


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值