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

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

Introduction

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

The text is from its open source code.

Field

ChildListPropertyDescriptorTAGS_PROPERTY
The "tags" structural property of this node type (element type: TagElement ).
ASTNode.NodeListtags
The list of tag elements (element type: TagElement ).

Method

voidaccept(ASTVisitor visitor)
Accepts the given visitor on a visit of the current node.
voiddelete()
Removes this node from its parent.
ASTgetAST()
Returns this node's AST.
StringgetComment()
Returns the doc comment string, including the starting and ending comment delimiters, and any embedded line breaks.
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.
booleanisDocComment()
Returns whether this comment is a doc comment (Javadoc).
voidsetProperty(String propertyName, Object data)
Sets the named property of this node to the given value, or to null to clear it.
booleansubtreeMatch(ASTMatcher matcher, Object other)
Returns whether the subtree rooted at the given node matches the given other object as decided by the given matcher.
StringtoString()
Returns a string representation of this node suitable for debugging purposes only.