Java org.eclipse.jdt.core.dom TagElement fields, constructors, methods, implement or subclass

Example usage for Java org.eclipse.jdt.core.dom TagElement fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.eclipse.jdt.core.dom TagElement.

The text is from its open source code.

Field

SimplePropertyDescriptorTAG_NAME_PROPERTY
The "tagName" structural property of this node type (type: String ).
ChildListPropertyDescriptorFRAGMENTS_PROPERTY
The "fragments" structural property of this node type (element type: IDocElement ).
StringTAG_AUTHOR
Standard doc tag name (value ).
StringTAG_CODE
Standard inline doc tag name (value ).
StringTAG_DEPRECATED
Standard doc tag name (value ).
StringTAG_DOCROOT
Standard inline doc tag name (value ).
StringTAG_EXCEPTION
Standard doc tag name (value ).
StringTAG_INHERITDOC
Standard inline doc tag name (value ).
StringTAG_LINK
Standard inline doc tag name (value ).
StringTAG_LINKPLAIN
Standard inline doc tag name (value ).
StringTAG_LITERAL
Standard inline doc tag name (value ).
StringTAG_PARAM
Standard doc tag name (value ).
StringTAG_RETURN
Standard doc tag name (value ).
StringTAG_SEE
Standard doc tag name (value ).
StringTAG_SINCE
Standard doc tag name (value ).
StringTAG_THROWS
Standard doc tag name (value ).
StringTAG_VALUE
Standard inline doc tag name (value ).
StringTAG_VERSION
Standard doc tag name (value ).
ASTNode.NodeListfragments
The list of doc elements (element type: IDocElement ).

Method

ASTgetAST()
Returns this node's AST.
intgetLength()
Returns the length in characters of the original source file indicating where the source fragment corresponding to this node ends.
ASTNodegetParent()
Returns this node's parent node, or null if this is the root node.
ObjectgetProperty(String propertyName)
Returns the value of the named property of this node, or null if none.
intgetStartPosition()
Returns the character index into the original source file indicating where the source fragment corresponding to this node begins.
StringgetTagName()
Returns this node's tag name, or null if none.
booleanisNested()
Returns whether this tag element is nested within another tag element.
voidsetProperty(String propertyName, Object data)
Sets the named property of this node to the given value, or to null to clear it.
voidsetSourceRange(int startPosition, int length)
Sets the source range of the original source file where the source fragment corresponding to this node was found.
voidsetTagName(String tagName)
Sets the tag name of this node to the given value.
StringtoString()
Returns a string representation of this node suitable for debugging purposes only.