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

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

Introduction

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

The text is from its open source code.

Subclass

org.eclipse.jdt.core.dom.Name 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.
booleanequals(Object obj)
The ASTNode implementation of this Object method uses object identity (==).
ASTgetAST()
Returns this node's AST.
StringgetFullyQualifiedName()
Returns the standard dot-separated representation of this name.
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.
ASTNodegetRoot()
Returns the root node at or above this node; returns this node if it is a root.
intgetStartPosition()
Returns the character index into the original source file indicating where the source fragment corresponding to this node begins.
booleanisQualifiedName()
Returns whether this name is a qualified name (QualifiedName).
booleanisSimpleName()
Returns whether this name is a simple name (SimpleName).
IBindingresolveBinding()
Resolves and returns the binding for the entity referred to by this name.
ITypeBindingresolveTypeBinding()
Resolves and returns the binding for the type of this expression.
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.