public interface IMetaTagsNode extends IASNode
The general shape of this node is:
IMetaTagsNode IMetaTagNode <-- getChild(0) IMetaTagNode <-- getChild(1) ...For example,[Foo] [Bar] public var i:int;is represented asIVariableNode IMetaTagsNode IMetaTagNode "Foo" IMetaTagNode "Bar" INamespaceDecorationNode "public" IKeywordNode "var" IIdentifierNode "i" IIdentifierNode "int"
UNKNOWN| Modifier and Type | Method and Description |
|---|---|
IMetaTagNode[] |
getAllTags()
Returns all the
IMetaTagNode objects as an array |
IMetaTagNode |
getTagByName(String name)
Returns the first
IMetaTagNode matching the given name |
IMetaTagNode[] |
getTagsByName(String name)
Gets all the
IMetaTagNode objects that match the given name |
boolean |
hasTagByName(String name)
Determines if a specific
IMetaTagNode exists in this collection |
contains, getAncestorOfType, getChild, getChildCount, getContainingNode, getContainingScope, getFileSpecification, getNodeID, getPackageName, getParent, getSpanningStart, getSucceedingNode, isTerminalgetAbsoluteEnd, getAbsoluteStart, getColumn, getEnd, getEndColumn, getEndLine, getLine, getSourcePath, getStartIMetaTagNode[] getTagsByName(String name)
IMetaTagNode objects that match the given namename - the name to match, such as Event, Style, IconFile, etcIMetaTagNode objects or nullIMetaTagNode[] getAllTags()
IMetaTagNode objects as an arrayboolean hasTagByName(String name)
IMetaTagNode exists in this collectionname - the name of the tagIMetaTagNode getTagByName(String name)
IMetaTagNode matching the given namename - the name to search forIMetaTagNode or nullCopyright © 2023 The Apache Software Foundation. All rights reserved.