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

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

Introduction

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

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).
ChildPropertyDescriptorBODY_PROPERTY
The "body" structural property of this node type (child type: Block ).

Constructor

Initializer(AST ast)
Creates a new AST node for an initializer declaration owned by the given AST.

Method

voiddelete()
Removes this node from its parent.
ASTgetAST()
Returns this node's AST.
BlockgetBody()
Returns the body of this initializer declaration.
intgetFlags()
Returns the flags associated with this node.
JavadocgetJavadoc()
Returns the doc comment 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.
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.
voidinternalSetModifiers(int pmodifiers)
Internal synonym for deprecated method.
Listmodifiers()
Returns the live ordered list of modifiers and annotations of this declaration (added in JLS3 API).
voidsetBody(Block body)
Sets the body of this initializer declaration.
voidsetFlags(int flags)
Sets the flags associated with this node to the given value.
voidsetJavadoc(Javadoc docComment)
Sets or clears the doc comment node.
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.
StringtoString()
Returns a string representation of this node suitable for debugging purposes only.