|
|||||||||
| Home >> All >> org >> eclipse >> jdt >> core >> [ dom overview ] | PREV CLASS NEXT CLASS | ||||||||
SUMMARY: JAVADOC | SOURCE | DOWNLOAD | NESTED | FIELD | CONSTR | METHOD |
DETAIL: FIELD | CONSTR | METHOD | ||||||||
org.eclipse.jdt.core.dom
Class MemberRef

java.lang.Objectorg.eclipse.jdt.core.dom.ASTNode
org.eclipse.jdt.core.dom.MemberRef
- All Implemented Interfaces:
- IDocElement
- public class MemberRef
- extends ASTNode
- implements IDocElement
- extends ASTNode
AST node for a member reference within a doc comment (Javadoc). The principal uses of these are in "@see" and "@link" tag elements, for references to field members (and occasionally to method and constructor members).
MemberRef: [ Name ] # Identifier
- Since:
- 3.0
| Nested Class Summary |
| Nested classes inherited from class org.eclipse.jdt.core.dom.ASTNode |
ASTNode.NodeList |
| Field Summary | |
private SimpleName |
memberName
The member name; lazily initialized; defaults to a unspecified, legal Java method name. |
static ChildPropertyDescriptor |
NAME_PROPERTY
The "name" structural property of this node type. |
private Name |
optionalQualifier
The optional qualifier; null for none; defaults to none. |
private static java.util.List |
PROPERTY_DESCRIPTORS
A list of property descriptors (element type: StructuralPropertyDescriptor), or null if uninitialized. |
static ChildPropertyDescriptor |
QUALIFIER_PROPERTY
The "qualifier" structural property of this node type. |
| Constructor Summary | |
(package private) |
MemberRef(AST ast)
Creates a new AST node for a member reference owned by the given AST. |
| Method Summary | |
(package private) void |
accept0(ASTVisitor visitor)
Accepts the given visitor on a type-specific visit of the current node. |
(package private) ASTNode |
clone0(AST target)
Returns a deep copy of the subtree of AST nodes rooted at this node. |
SimpleName |
getName()
Returns the name of the referenced member. |
(package private) int |
getNodeType0()
Returns an integer value identifying the type of this concrete AST node. |
Name |
getQualifier()
Returns the qualifier of this member reference, or null if there is none. |
(package private) ASTNode |
internalGetSetChildProperty(ChildPropertyDescriptor property,
boolean get,
ASTNode child)
Sets the child value of the given property for this node. |
(package private) java.util.List |
internalStructuralPropertiesForType(int apiLevel)
Returns a list of property descriptors for this node type. |
(package private) int |
memSize()
Returns an estimate of the memory footprint of this node in bytes. |
static java.util.List |
propertyDescriptors(int apiLevel)
Returns a list of structural property descriptors for this node type. |
IBinding |
resolveBinding()
Resolves and returns the binding for the entity referred to by this member reference. |
void |
setName(SimpleName name)
Sets the name of the referenced member to the given name. |
void |
setQualifier(Name name)
Sets or clears the qualifier of this member reference. |
(package private) boolean |
subtreeMatch0(ASTMatcher matcher,
java.lang.Object other)
Returns whether the subtree rooted at the given node matches the given other object as decided by the given matcher. |
(package private) int |
treeSize()
Returns an estimate of the memory footprint in bytes of the entire subtree rooted at this node. |
| Methods inherited from class java.lang.Object |
clone, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Field Detail |
QUALIFIER_PROPERTY
public static final ChildPropertyDescriptor QUALIFIER_PROPERTY
- The "qualifier" structural property of this node type.
- Since:
- 3.0
NAME_PROPERTY
public static final ChildPropertyDescriptor NAME_PROPERTY
- The "name" structural property of this node type.
- Since:
- 3.0
PROPERTY_DESCRIPTORS
private static final java.util.List PROPERTY_DESCRIPTORS
- A list of property descriptors (element type:
StructuralPropertyDescriptor),
or null if uninitialized.
optionalQualifier
private Name optionalQualifier
- The optional qualifier;
nullfor none; defaults to none.
memberName
private SimpleName memberName
- The member name; lazily initialized; defaults to a unspecified,
legal Java method name.
| Constructor Detail |
MemberRef
MemberRef(AST ast)
- Creates a new AST node for a member reference owned by the given
AST. By default, the method reference is for a member with an
unspecified, but legal, name; and no qualifier.
N.B. This constructor is package-private; all subclasses must be declared in the same package; clients are unable to declare additional subclasses.
| Method Detail |
propertyDescriptors
public static java.util.List propertyDescriptors(int apiLevel)
- Returns a list of structural property descriptors for this node type.
Clients must not modify the result.
- Since:
- 3.0
internalStructuralPropertiesForType
final java.util.List internalStructuralPropertiesForType(int apiLevel)
- Description copied from class:
ASTNode - Returns a list of property descriptors for this node type.
Clients must not modify the result. This abstract method
must be implemented in each concrete AST node type.
N.B. This method is package-private, so that the implementations of this method in each of the concrete AST node types do not clutter up the API doc.
- Specified by:
internalStructuralPropertiesForTypein classASTNode
internalGetSetChildProperty
final ASTNode internalGetSetChildProperty(ChildPropertyDescriptor property, boolean get, ASTNode child)
- Description copied from class:
ASTNode - Sets the child value of the given property for this node.
The default implementation of this method throws an exception explaining
that this node does not have such a property. This method should be
extended in subclasses that have at leasy one child property.
- Overrides:
internalGetSetChildPropertyin classASTNode
getNodeType0
final int getNodeType0()
- Description copied from class:
ASTNode - Returns an integer value identifying the type of this concrete AST node.
This internal method is implemented in each of the concrete node subclasses.
- Specified by:
getNodeType0in classASTNode
clone0
ASTNode clone0(AST target)
- Description copied from class:
ASTNode - Returns a deep copy of the subtree of AST nodes rooted at this node.
The resulting nodes are owned by the given AST, which may be different
from the AST of this node. Even if this node has a parent, the
result node will be unparented.
This method must be implemented in subclasses.
This method does not report pre- and post-clone events. All callers should instead call
clone(AST)to ensure that pre- and post-clone events are reported.N.B. This method is package-private, so that the implementations of this method in each of the concrete AST node types do not clutter up the API doc.
subtreeMatch0
final boolean subtreeMatch0(ASTMatcher matcher, java.lang.Object other)
- Description copied from class:
ASTNode - Returns whether the subtree rooted at the given node matches the
given other object as decided by the given matcher.
This internal method is implemented in each of the concrete node subclasses.
- Specified by:
subtreeMatch0in classASTNode
accept0
void accept0(ASTVisitor visitor)
- Description copied from class:
ASTNode - Accepts the given visitor on a type-specific visit of the current node.
This method must be implemented in all concrete AST node types.
General template for implementation on each concrete ASTNode class:
Note that the caller (boolean visitChildren = visitor.visit(this); if (visitChildren) { // visit children in normal left to right reading order acceptChild(visitor, getProperty1()); acceptChildren(visitor, rawListProperty); acceptChild(visitor, getProperty2()); } visitor.endVisit(this);accept) take cares of invokingvisitor.preVisit(this)andvisitor.postVisit(this).
getQualifier
public Name getQualifier()
- Returns the qualifier of this member reference, or
nullif there is none.
setQualifier
public void setQualifier(Name name)
- Sets or clears the qualifier of this member reference.
getName
public SimpleName getName()
- Returns the name of the referenced member.
setName
public void setName(SimpleName name)
- Sets the name of the referenced member to the given name.
resolveBinding
public final IBinding resolveBinding()
- Resolves and returns the binding for the entity referred to by
this member reference.
Note that bindings are generally unavailable unless requested when the AST is being built.
memSize
int memSize()
- Description copied from class:
ASTNode - Returns an estimate of the memory footprint of this node in bytes.
The estimate does not include the space occupied by child nodes.
treeSize
int treeSize()
- Description copied from class:
ASTNode - Returns an estimate of the memory footprint in bytes of the entire
subtree rooted at this node.
N.B. This method is package-private, so that the implementations of this method in each of the concrete AST node types do not clutter up the API doc.
|
|||||||||
| Home >> All >> org >> eclipse >> jdt >> core >> [ dom overview ] | PREV CLASS NEXT CLASS | ||||||||
SUMMARY: JAVADOC | SOURCE | DOWNLOAD | NESTED | FIELD | CONSTR | METHOD |
DETAIL: FIELD | CONSTR | METHOD | ||||||||
JAVADOC