| Package | Description |
|---|---|
| org.walkmod.javalang.ast |
AST root nodes of Java source files.
|
| org.walkmod.javalang.ast.body |
AST nodes for types' members (e.g methods, fields, other types..).
|
| Modifier and Type | Class and Description |
|---|---|
class |
BlockComment
AST node that represent block comments.
|
class |
LineComment
AST node that represent line comments.
|
| Modifier and Type | Method and Description |
|---|---|
List<Comment> |
CompilationUnit.getComments()
Return a list containing all comments declared in this compilation unit.
|
| Modifier and Type | Method and Description |
|---|---|
void |
CompilationUnit.setComments(List<Comment> comments)
Sets the list of comments of this compilation unit.
|
| Constructor and Description |
|---|
CompilationUnit(int beginLine,
int beginColumn,
int endLine,
int endColumn,
PackageDeclaration pakage,
List<ImportDeclaration> imports,
List<TypeDeclaration> types,
List<Comment> comments) |
CompilationUnit(PackageDeclaration pakage,
List<ImportDeclaration> imports,
List<TypeDeclaration> types,
List<Comment> comments) |
| Modifier and Type | Class and Description |
|---|---|
class |
JavadocComment |
Copyright © 2015. All rights reserved.