Package | Description |
---|---|
com.asakusafw.utils.java.internal.model.syntax |
Naive Java DOM implementations.
|
com.asakusafw.utils.java.model.syntax |
Interfaces for representing Java DOMs.
|
Modifier and Type | Class and Description |
---|---|
class |
BlockCommentImpl
An implementation of
BlockComment . |
class |
JavadocImpl
An implementation of
Javadoc . |
class |
LineCommentImpl
An implementation of
LineComment . |
Modifier and Type | Method and Description |
---|---|
List<? extends Comment> |
CompilationUnitImpl.getComments() |
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.setComments(List<? extends Comment> comments)
Sets the comments.
|
Modifier and Type | Interface and Description |
---|---|
interface |
BlockComment
An interface which represents block comments.
|
interface |
Javadoc
An interface which represents the Java documentation comment.
|
interface |
LineComment
An interface which represents line comments.
|
Modifier and Type | Method and Description |
---|---|
List<? extends Comment> |
CompilationUnit.getComments()
Returns the comments.
|
Modifier and Type | Method and Description |
---|---|
CompilationUnit |
ModelFactory.newCompilationUnit(PackageDeclaration packageDeclaration,
List<? extends ImportDeclaration> importDeclarations,
List<? extends TypeDeclaration> typeDeclarations,
List<? extends Comment> comments)
Returns a new
CompilationUnit object. |
Copyright © 2011–2019 Asakusa Framework Team. All rights reserved.