| 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..).
|
| org.walkmod.javalang.ast.stmt |
AST nodes for statements (e.g methods' body)
|
| org.walkmod.javalang.comparators |
Identity comparators for AST nodes.
|
| org.walkmod.javalang.util |
Common utilities to process source files.
|
| Modifier and Type | Method and Description |
|---|---|
List<TypeDeclaration> |
CompilationUnit.getTypes()
Return the list of types declared in this compilation unit.
|
| Modifier and Type | Method and Description |
|---|---|
void |
CompilationUnit.setTypes(List<TypeDeclaration> types)
Sets the list of types declared in 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 |
AnnotationDeclaration |
class |
ClassOrInterfaceDeclaration |
class |
EmptyTypeDeclaration |
class |
EnumDeclaration |
| Modifier and Type | Method and Description |
|---|---|
void |
ClassOrInterfaceDeclaration.merge(TypeDeclaration remoteTypeDeclaration,
org.walkmod.merger.MergeEngine configuration) |
void |
TypeDeclaration.merge(TypeDeclaration remoteTypeDeclaration,
org.walkmod.merger.MergeEngine configuration) |
| Modifier and Type | Method and Description |
|---|---|
TypeDeclaration |
TypeDeclarationStmt.getTypeDeclaration() |
| Modifier and Type | Method and Description |
|---|---|
void |
TypeDeclarationStmt.setTypeDeclaration(TypeDeclaration typeDecl) |
| Constructor and Description |
|---|
TypeDeclarationStmt(int beginLine,
int beginColumn,
int endLine,
int endColumn,
TypeDeclaration typeDecl) |
TypeDeclarationStmt(TypeDeclaration typeDecl) |
| Modifier and Type | Method and Description |
|---|---|
int |
TypeDeclarationNameComparator.compare(TypeDeclaration o1,
TypeDeclaration o2) |
int |
TypeDeclarationComparator.compare(TypeDeclaration t1,
TypeDeclaration t2) |
| Modifier and Type | Method and Description |
|---|---|
static CompilationUnit |
FileUtils.getCompilationUnit(File outputDirectory,
PackageDeclaration pd,
TypeDeclaration td) |
static File |
FileUtils.getSourceFile(File outputDirectory,
PackageDeclaration pd,
TypeDeclaration td) |
Copyright © 2015. All rights reserved.