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

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

Introduction

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

The text is from its open source code.

Field

ChildPropertyDescriptorQUALIFIER_PROPERTY
The "qualifier" structural property of this node type (child type: Name ).
ChildPropertyDescriptorNAME_PROPERTY
The "name" structural property of this node type (child type: SimpleName ).

Constructor

QualifiedName(AST ast)
Creates a new AST node for a qualified name owned by the given AST.

Method

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.
SimpleNamegetName()
Returns the name part of this qualified name.
ASTNodegetParent()
Returns this node's parent node, or null if this is the root node.
NamegetQualifier()
Returns the qualifier part of this qualified name.
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.
IBindingresolveBinding()
Resolves and returns the binding for the entity referred to by this name.
ObjectresolveConstantExpressionValue()
Resolves and returns the compile-time constant expression value as specified in JLS2 15.28, if this expression has one.
ITypeBindingresolveTypeBinding()
Resolves and returns the binding for the type of this expression.
voidsetName(SimpleName name)
Sets the name part of this qualified name to the given simple name.
voidsetQualifier(Name qualifier)
Sets the qualifier of this qualified name to the given name.
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.