Package | Description |
---|---|
com.asakusafw.utils.java.internal.model.syntax |
Naive Java DOM implementations.
|
com.asakusafw.utils.java.internal.model.util |
Internal utlities for Java DOM building/emitting.
|
com.asakusafw.utils.java.model.syntax |
Interfaces for representing Java DOMs.
|
com.asakusafw.utils.java.model.util |
Utilities for Java DOM building/emitting.
|
Modifier and Type | Class and Description |
---|---|
class |
ImportDeclarationImpl
An implementation of
ImportDeclaration . |
Modifier and Type | Method and Description |
---|---|
ImportDeclaration |
ModelFactoryImpl.newImportDeclaration(ImportKind importKind,
Name name) |
Modifier and Type | Method and Description |
---|---|
List<? extends ImportDeclaration> |
CompilationUnitImpl.getImportDeclarations() |
Modifier and Type | Method and Description |
---|---|
CompilationUnit |
ModelFactoryImpl.newCompilationUnit(PackageDeclaration packageDeclaration,
List<? extends ImportDeclaration> importDeclarations,
List<? extends TypeDeclaration> typeDeclarations,
List<? extends Comment> comments) |
void |
CompilationUnitImpl.setImportDeclarations(List<? extends ImportDeclaration> importDeclarations)
Sets the import declarations.
|
Modifier and Type | Method and Description |
---|---|
Void |
ModelDigester.visitImportDeclaration(ImportDeclaration elem,
com.asakusafw.utils.java.internal.model.util.DigestContext context) |
Boolean |
ModelMatcher.visitImportDeclaration(ImportDeclaration elem,
Model context) |
Modifier and Type | Method and Description |
---|---|
ImportDeclaration |
ModelFactory.newImportDeclaration(ImportKind importKind,
Name name)
Returns a new
ImportDeclaration object. |
default ImportDeclaration |
ModelFactory.newImportDeclaration(Name name)
Returns a new
ImportDeclaration object. |
Modifier and Type | Method and Description |
---|---|
List<? extends ImportDeclaration> |
CompilationUnit.getImportDeclarations()
Returns the import declarations.
|
Modifier and Type | Method and Description |
---|---|
R |
StrictVisitor.visitImportDeclaration(ImportDeclaration elem,
C context) |
R |
Visitor.visitImportDeclaration(ImportDeclaration elem,
C context)
Processes
ImportDeclaration using this visitor. |
Modifier and Type | Method and Description |
---|---|
default CompilationUnit |
ModelFactory.newCompilationUnit(PackageDeclaration packageDeclaration,
List<? extends ImportDeclaration> importDeclarations,
List<? extends TypeDeclaration> typeDeclarations)
Returns a new
CompilationUnit object. |
CompilationUnit |
ModelFactory.newCompilationUnit(PackageDeclaration packageDeclaration,
List<? extends ImportDeclaration> importDeclarations,
List<? extends TypeDeclaration> typeDeclarations,
List<? extends Comment> comments)
Returns a new
CompilationUnit object. |
Modifier and Type | Method and Description |
---|---|
List<ImportDeclaration> |
ImportBuilder.toImportDeclarations()
Returns the built import declarations.
|
Copyright © 2011–2019 Asakusa Framework Team. All rights reserved.