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

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

Introduction

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

The text is from its open source code.

Subclass

org.eclipse.jdt.core.dom.Statement has subclasses.
Click this link to see all its subclasses.

Method

voidaccept(ASTVisitor visitor)
Accepts the given visitor on a visit of the current node.
voiddelete()
Removes this node from its parent.
booleanequals(Object obj)
The ASTNode implementation of this Object method uses object identity (==).
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.
StructuralPropertyDescriptorgetLocationInParent()
Returns the location of this node within its parent, or null if this is a root node.
intgetNodeType()
Returns an integer value identifying the type of this concrete AST node.
ASTNodegetParent()
Returns this node's parent node, or null if this is the root node.
intgetStartPosition()
Returns the character index into the original source file indicating where the source fragment corresponding to this node begins.
voidsetSourceRange(int startPosition, int length)
Sets the source range of the original source file where the source fragment corresponding to this node was found.
voidsetStructuralProperty(StructuralPropertyDescriptor property, Object value)
Sets the value of the given structural property for this node.
StringtoString()
Returns a string representation of this node suitable for debugging purposes only.