| Package | Description |
|---|---|
| org.walkmod.javalang.ast.body |
AST nodes for types' members (e.g methods, fields, other types..).
|
| org.walkmod.javalang.ast.expr |
AST nodes for expressions (e.g values applied as arguments in method calls)
|
| org.walkmod.javalang.comparators |
Identity comparators for AST nodes.
|
| Modifier and Type | Class and Description |
|---|---|
class |
AnnotationDeclaration |
class |
AnnotationMemberDeclaration |
class |
ClassOrInterfaceDeclaration |
class |
ConstructorDeclaration |
class |
EmptyMemberDeclaration |
class |
EmptyTypeDeclaration |
class |
EnumConstantDeclaration |
class |
EnumDeclaration |
class |
FieldDeclaration |
class |
InitializerDeclaration |
class |
MethodDeclaration |
class |
TypeDeclaration |
| Modifier and Type | Method and Description |
|---|---|
List<BodyDeclaration> |
EnumConstantDeclaration.getClassBody() |
List<BodyDeclaration> |
TypeDeclaration.getMembers() |
| Modifier and Type | Method and Description |
|---|---|
void |
BodyDeclaration.merge(BodyDeclaration remoteBodyDeclaration,
org.walkmod.merger.MergeEngine configuration) |
| Modifier and Type | Method and Description |
|---|---|
void |
EnumConstantDeclaration.setClassBody(List<BodyDeclaration> classBody) |
void |
TypeDeclaration.setMembers(List<BodyDeclaration> members) |
| Constructor and Description |
|---|
AnnotationDeclaration(int beginLine,
int beginColumn,
int endLine,
int endColumn,
JavadocComment javaDoc,
int modifiers,
List<AnnotationExpr> annotations,
String name,
List<BodyDeclaration> members) |
AnnotationDeclaration(JavadocComment javaDoc,
int modifiers,
List<AnnotationExpr> annotations,
String name,
List<BodyDeclaration> members) |
ClassOrInterfaceDeclaration(int beginLine,
int beginColumn,
int endLine,
int endColumn,
JavadocComment javaDoc,
int modifiers,
List<AnnotationExpr> annotations,
boolean isInterface,
String name,
List<TypeParameter> typeParameters,
List<ClassOrInterfaceType> extendsList,
List<ClassOrInterfaceType> implementsList,
List<BodyDeclaration> members) |
ClassOrInterfaceDeclaration(JavadocComment javaDoc,
int modifiers,
List<AnnotationExpr> annotations,
boolean isInterface,
String name,
List<TypeParameter> typeParameters,
List<ClassOrInterfaceType> extendsList,
List<ClassOrInterfaceType> implementsList,
List<BodyDeclaration> members) |
EnumConstantDeclaration(int beginLine,
int beginColumn,
int endLine,
int endColumn,
JavadocComment javaDoc,
List<AnnotationExpr> annotations,
String name,
List<Expression> args,
List<BodyDeclaration> classBody) |
EnumConstantDeclaration(JavadocComment javaDoc,
List<AnnotationExpr> annotations,
String name,
List<Expression> args,
List<BodyDeclaration> classBody) |
EnumDeclaration(int beginLine,
int beginColumn,
int endLine,
int endColumn,
JavadocComment javaDoc,
int modifiers,
List<AnnotationExpr> annotations,
String name,
List<ClassOrInterfaceType> implementsList,
List<EnumConstantDeclaration> entries,
List<BodyDeclaration> members) |
EnumDeclaration(JavadocComment javaDoc,
int modifiers,
List<AnnotationExpr> annotations,
String name,
List<ClassOrInterfaceType> implementsList,
List<EnumConstantDeclaration> entries,
List<BodyDeclaration> members) |
TypeDeclaration(int beginLine,
int beginColumn,
int endLine,
int endColumn,
List<AnnotationExpr> annotations,
JavadocComment javaDoc,
int modifiers,
String name,
List<BodyDeclaration> members) |
TypeDeclaration(List<AnnotationExpr> annotations,
JavadocComment javaDoc,
int modifiers,
String name,
List<BodyDeclaration> members) |
| Modifier and Type | Method and Description |
|---|---|
List<BodyDeclaration> |
ObjectCreationExpr.getAnonymousClassBody() |
| Modifier and Type | Method and Description |
|---|---|
void |
ObjectCreationExpr.setAnonymousClassBody(List<BodyDeclaration> anonymousClassBody) |
| Constructor and Description |
|---|
ObjectCreationExpr(int beginLine,
int beginColumn,
int endLine,
int endColumn,
Expression scope,
ClassOrInterfaceType type,
List<Type> typeArgs,
List<Expression> args,
List<BodyDeclaration> anonymousBody) |
| Modifier and Type | Method and Description |
|---|---|
int |
BodyDeclaratorComparator.compare(BodyDeclaration o1,
BodyDeclaration o2) |
Copyright © 2015. All rights reserved.