Package | org.swizframework.reflection |
Interface | public interface IMetadataTag |
Implementors | BaseMetadataTag |
Property | Defined By | ||
---|---|---|---|
args : Array
Array of arguments defined in the tag. | IMetadataTag | ||
asTag : String [read-only]
String showing what this tag looks like in code. | IMetadataTag | ||
host : IMetadataHost
Element (class, method or property) on which the metadata tag is defined. | IMetadataTag | ||
name : String
Name of the tag, e.g. | IMetadataTag |
Method | Defined By | ||
---|---|---|---|
copyFrom(metadataTag:IMetadataTag):void | IMetadataTag | ||
getArg(argName:String):MetadataArg | IMetadataTag | ||
hasArg(argName:String):Boolean | IMetadataTag | ||
toString():String | IMetadataTag |
args | property |
args:Array
Array of arguments defined in the tag.
public function get args():Array
public function set args(value:Array):void
See also
asTag | property |
asTag:String
[read-only] String showing what this tag looks like in code. Useful for debugging and log messages.
public function get asTag():String
host | property |
host:IMetadataHost
Element (class, method or property) on which the metadata tag is defined.
public function get host():IMetadataHost
public function set host(value:IMetadataHost):void
name | property |
name:String
Name of the tag, e.g. "Bindable" from [Bindable].
public function get name():String
public function set name(value:String):void
copyFrom | () | method |
getArg | () | method |
public function getArg(argName:String):MetadataArg
Parameters
argName:String — Name of argument to retrieve.
|
MetadataArg — Argument for the given name.
|
hasArg | () | method |
public function hasArg(argName:String):Boolean
Parameters
argName:String — Name of argument whose existence on this tag will be checked.
|
Boolean — Flag indicating whether or not this tag contains an argument for the given name.
|
toString | () | method |
public function toString():String
ReturnsString |