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

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

Introduction

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

The text is from its open source code.

Field

ChildListPropertyDescriptorMODIFIERS2_PROPERTY
The "modifiers" structural property of this node type (element type: IExtendedModifier ) (added in JLS3 API).
ChildListPropertyDescriptorFRAGMENTS_PROPERTY
The "fragments" structural property of this node type (element type: VariableDeclarationFragment ).
ASTNode.NodeListmodifiers
The extended modifiers (element type: IExtendedModifier ).

Constructor

VariableDeclarationStatement(AST ast)
Creates a new unparented local variable declaration statement node owned by the given AST.

Method

voidaccept(ASTVisitor visitor)
Accepts the given visitor on a visit of the current node.
voiddelete()
Removes this node from its parent.
Listfragments()
Returns the live list of variable declaration fragments in this statement.
ASTgetAST()
Returns this node's AST.
intgetFlags()
Returns the flags associated with this node.
intgetLength()
Returns the length in characters of the original source file indicating where the source fragment corresponding to this node ends.
intgetModifiers()
Returns the modifiers explicitly specified on this declaration.
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.
TypegetType()
Returns the base type declared in this variable declaration statement.
voidinternalSetModifiers(int pmodifiers)
Internal synonym for deprecated method.
voidsetFlags(int flags)
Sets the flags associated with this node to the given value.
voidsetModifiers(int modifiers)
Sets the modifiers explicitly specified on this declaration (JLS2 API only).
voidsetSourceRange(int startPosition, int length)
Sets the source range of the original source file where the source fragment corresponding to this node was found.
voidsetType(Type type)
Sets the base type declared in this variable declaration statement to the given type.
StringtoString()
Returns a string representation of this node suitable for debugging purposes only.