Eclipse JDT
2.0

org.eclipse.jdt.core.jdom
Interface IDOMImport

All Superinterfaces:
Cloneable, IDOMNode

public interface IDOMImport
extends IDOMNode

Represents an import declaration. The corresponding syntactic unit is ImportDeclaration (JLS2 7.5). An import has no children and its parent is a compilation unit.

This interface is not intended to be implemented by clients.


Field Summary
 
Fields inherited from interface org.eclipse.jdt.core.jdom.IDOMNode
COMPILATION_UNIT, FIELD, IMPORT, INITIALIZER, METHOD, PACKAGE, TYPE
 
Method Summary
 String getName()
          The IDOMImport refinement of this IDOMNode method returns the name of this import.
 boolean isOnDemand()
          Returns whether this import declaration ends with ".*".
 void setName(String name)
          The IDOMImport refinement of this IDOMNode method sets the name of this import.
 
Methods inherited from interface org.eclipse.jdt.core.jdom.IDOMNode
addChild, canHaveChildren, clone, getCharacters, getChild, getChildren, getContents, getFirstChild, getJavaElement, getNextNode, getNodeType, getParent, getPreviousNode, insertSibling, isAllowableChild, isSignatureEqual, remove
 

Method Detail

getName

public String getName()
The IDOMImport refinement of this IDOMNode method returns the name of this import. The syntax for an import name corresponds to a fully qualified type name, or to an on-demand package name as defined by ImportDeclaration (JLS2 7.5).

Specified by:
getName in interface IDOMNode
Returns:
the name, or null if it has no name

isOnDemand

public boolean isOnDemand()
Returns whether this import declaration ends with ".*".

Returns:
true if this in an on-demand import

setName

public void setName(String name)
The IDOMImport refinement of this IDOMNode method sets the name of this import. The syntax for an import name corresponds to a fully qualified type name, or to an on-demand package name as defined by ImportDeclaration (JLS2 7.5).

Specified by:
setName in interface IDOMNode
Parameters:
name - the name, or null to clear the name
Throws:
IllegalArgumentException - if null is specified

Eclipse JDT
2.0

Copyright (c) IBM Corp. and others 2000, 2002. All Rights Reserved.