|
Eclipse JDT 2.1 |
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||
java.lang.Object
|
+--org.eclipse.jdt.core.dom.ASTNode
|
+--org.eclipse.jdt.core.dom.ImportDeclaration
Import declaration AST node type.
ImportDeclaration:
import Name [ . * ] ;
| Field Summary |
| Method Summary | |
Name |
getName()
Returns the name imported by this declaration. |
int |
getNodeType()
Returns an integer value identifying the type of this concrete AST node. |
boolean |
isOnDemand()
Returns whether this import declaration is an on-demand or a single-type import. |
IBinding |
resolveBinding()
Resolves and returns the binding for the package or type imported by this import declaration. |
void |
setName(Name name)
Sets the name of this import declaration to the given name. |
void |
setOnDemand(boolean onDemand)
Sets whether this import declaration is an on-demand or a single-type import. |
boolean |
subtreeMatch(ASTMatcher matcher,
Object other)
Returns whether the subtree rooted at the given node matches the given other object as decided by the given matcher. |
| Methods inherited from class org.eclipse.jdt.core.dom.ASTNode |
accept, copySubtree, copySubtrees, equals, getAST, getFlags, getLength, getParent, getProperty, getRoot, getStartPosition, properties, setFlags, setProperty, setSourceRange, subtreeBytes, toString |
| Methods inherited from class java.lang.Object |
clone, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Method Detail |
public int getNodeType()
ASTNode
For each concrete node type there is a unique node type constant (name
and value). The unique node type constant for a concrete node type such as
CastExpression is ASTNode.CAST_EXPRESSION.
getNodeType in class ASTNode
public boolean subtreeMatch(ASTMatcher matcher,
Object other)
ASTNode
subtreeMatch in class ASTNodematcher - the matcherother - the other object, or null
true if the subtree matches, or
false if they do not matchpublic Name getName()
For an on-demand import, this is the name of a package. For a single-type import, this is the qualified name of a type.
public void setName(Name name)
For an on-demand import, this is the name of a package. For a single-type import, this is the qualified name of a type.
name - the new import name
IllegalArgumentException - if:
public boolean isOnDemand()
true if this is an on-demand import,
and false if this is a single type importpublic void setOnDemand(boolean onDemand)
onDemand - true if this is an on-demand import,
and false if this is a single type importpublic IBinding resolveBinding()
Note that bindings are generally unavailable unless requested when the AST is being built.
null if the binding cannot
be resolved
|
Eclipse JDT 2.1 |
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||