Package org.codehaus.groovy.ast
Class ImportNode
java.lang.Object
org.codehaus.groovy.ast.ASTNode
org.codehaus.groovy.ast.AnnotatedNode
org.codehaus.groovy.ast.ImportNode
- All Implemented Interfaces:
GroovydocHolder<AnnotatedNode>
,NodeMetaDataHandler
public class ImportNode extends AnnotatedNode
Represents an import statement.
-
Field Summary
Fields inherited from interface groovy.lang.groovydoc.GroovydocHolder
DOC_COMMENT
-
Constructor Summary
Constructors Constructor Description ImportNode(java.lang.String packageName)
An import of all types in a package, i.e.import pack.*
ImportNode(ClassNode type)
An import of all static members of a type, i.e.import static pack.Type.*
ImportNode(ClassNode type, java.lang.String alias)
An import of a single type, i.e.import pack.Type
orimport pack.Type as Alias
ImportNode(ClassNode type, java.lang.String fieldName, java.lang.String alias)
An import of a static field or method of a type, i.e.import static pack.Type.name
orimport static pack.Type.name as alias
-
Method Summary
Modifier and Type Method Description java.lang.String
getAlias()
java.lang.String
getClassName()
java.lang.String
getFieldName()
java.lang.String
getPackageName()
java.lang.String
getText()
ClassNode
getType()
boolean
isStar()
boolean
isStatic()
void
setType(ClassNode type)
void
visit(GroovyCodeVisitor visitor)
Methods inherited from class org.codehaus.groovy.ast.AnnotatedNode
addAnnotation, addAnnotations, getAnnotations, getAnnotations, getDeclaringClass, getGroovydoc, getInstance, hasNoRealSourcePosition, isSynthetic, setDeclaringClass, setHasNoRealSourcePosition, setSynthetic
Methods inherited from class org.codehaus.groovy.ast.ASTNode
copyNodeMetaData, getColumnNumber, getLastColumnNumber, getLastLineNumber, getLineNumber, getMetaDataMap, setColumnNumber, setLastColumnNumber, setLastLineNumber, setLineNumber, setMetaDataMap, setSourcePosition
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.codehaus.groovy.ast.NodeMetaDataHandler
copyNodeMetaData, getNodeMetaData, getNodeMetaData, getNodeMetaData, putNodeMetaData, removeNodeMetaData, setNodeMetaData
-
Constructor Details
-
ImportNode
An import of a single type, i.e.import pack.Type
orimport pack.Type as Alias
- Parameters:
type
- the type referencealias
- optional alias
-
ImportNode
public ImportNode(java.lang.String packageName)An import of all types in a package, i.e.import pack.*
- Parameters:
packageName
- the name of the package
-
ImportNode
An import of all static members of a type, i.e.import static pack.Type.*
- Parameters:
type
- the type reference
-
ImportNode
An import of a static field or method of a type, i.e.import static pack.Type.name
orimport static pack.Type.name as alias
- Parameters:
type
- the type referencefieldName
- the field namealias
- optional alias
-
-
Method Details
-
getText
public java.lang.String getText() -
isStar
public boolean isStar() -
isStatic
public boolean isStatic() -
getAlias
public java.lang.String getAlias() -
getClassName
public java.lang.String getClassName() -
getFieldName
public java.lang.String getFieldName() -
getPackageName
public java.lang.String getPackageName() -
getType
-
setType
-
visit
-