This class represents a import declaration. Imports are optional for the {@link CompilationUnit}.
The ImportDeclaration is constructed following the syntax: ImportDeclaration ::= "import" ( "static" )? {@link NameExpr} ( "." "*" )? ";"
@author Julio Vilmar Gesser
ImportDeclaration: import Name [ . * ] ;For JLS3, static was added:
ImportDeclaration: import [ static ] Name [ . * ] ;@since 2.0
ImportDeclaration: import Name [ . * ] ;For JLS3, static was added:
ImportDeclaration: import [ static ] Name [ . * ] ;@since 2.0 @noinstantiate This class is not intended to be instantiated by clients.
|
|
|
|
|
|
|
|