Package org.codehaus.janino
Interface Visitor.ImportVisitor<R,EX extends Throwable>
- Type Parameters:
R
- The type of the object returned by thevisit*()
methodsEX
- The exception that thevisit*()
methods may throw
- Enclosing class:
- Visitor
public static interface Visitor.ImportVisitor<R,EX extends Throwable>
The visitor for all kinds of
Java.AbstractCompilationUnit.ImportDeclaration
s.-
Method Summary
Modifier and TypeMethodDescriptionvisitStaticImportOnDemandDeclaration
(Java.AbstractCompilationUnit.StaticImportOnDemandDeclaration siodd)
-
Method Details
-
visitSingleTypeImportDeclaration
@Nullable R visitSingleTypeImportDeclaration(Java.AbstractCompilationUnit.SingleTypeImportDeclaration stid) throws EX -
visitTypeImportOnDemandDeclaration
@Nullable R visitTypeImportOnDemandDeclaration(Java.AbstractCompilationUnit.TypeImportOnDemandDeclaration tiodd) throws EX -
visitSingleStaticImportDeclaration
@Nullable R visitSingleStaticImportDeclaration(Java.AbstractCompilationUnit.SingleStaticImportDeclaration ssid) throws EX -
visitStaticImportOnDemandDeclaration
@Nullable R visitStaticImportOnDemandDeclaration(Java.AbstractCompilationUnit.StaticImportOnDemandDeclaration siodd) throws EX
-