public interface IDOMImport extends IDOMNode
COMPILATION_UNIT, FIELD, IMPORT, INITIALIZER, METHOD, PACKAGE, TYPE
Modifier and Type | Method and Description |
---|---|
int |
getFlags()
Deprecated.
Returns the modifier flags for this import.
|
String |
getName()
Deprecated.
The
IDOMImport refinement of this IDOMNode
method returns the name of this import. |
boolean |
isOnDemand()
Deprecated.
Returns whether this import declaration ends with
". |
void |
setFlags(int flags)
Deprecated.
Sets the modifier flags for this import.
|
void |
setName(String name)
Deprecated.
The
IDOMImport refinement of this IDOMNode
method sets the name of this import. |
addChild, canHaveChildren, clone, getCharacters, getChild, getChildren, getContents, getFirstChild, getJavaElement, getNextNode, getNodeType, getParent, getPreviousNode, insertSibling, isAllowableChild, isSignatureEqual, remove
String getName()
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).boolean isOnDemand()
".*"
.true
if this in an on-demand importint getFlags()
Flags
. Only the static flag is meaningful for import declarations.Flags
void setFlags(int flags)
Flags
. Only the static flag is meaningful for import declarations.flags
- the modifier flags for this importFlags
void setName(String name)
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).setName
in interface IDOMNode
name
- the given nameIllegalArgumentException
- if null
is specified
Copyright (c) 2000, 2015 Eclipse Contributors and others. All rights reserved.Guidelines for using Eclipse APIs.