| 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.visitors |
Generic and simple visitors to process source files.
|
| Modifier and Type | Method and Description |
|---|---|
List<TypeParameter> |
MethodDeclaration.getTypeParameters() |
List<TypeParameter> |
ClassOrInterfaceDeclaration.getTypeParameters() |
List<TypeParameter> |
ConstructorDeclaration.getTypeParameters() |
| Modifier and Type | Method and Description |
|---|---|
void |
MethodDeclaration.setTypeParameters(List<TypeParameter> typeParameters) |
void |
ClassOrInterfaceDeclaration.setTypeParameters(List<TypeParameter> typeParameters) |
void |
ConstructorDeclaration.setTypeParameters(List<TypeParameter> typeParameters) |
| Constructor and Description |
|---|
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) |
ConstructorDeclaration(int beginLine,
int beginColumn,
int endLine,
int endColumn,
JavadocComment javaDoc,
int modifiers,
List<AnnotationExpr> annotations,
List<TypeParameter> typeParameters,
String name,
List<Parameter> parameters,
List<ClassOrInterfaceType> throws_,
BlockStmt block) |
ConstructorDeclaration(JavadocComment javaDoc,
int modifiers,
List<AnnotationExpr> annotations,
List<TypeParameter> typeParameters,
String name,
List<Parameter> parameters,
List<ClassOrInterfaceType> throws_,
BlockStmt block) |
MethodDeclaration(int beginLine,
int beginColumn,
int endLine,
int endColumn,
JavadocComment javaDoc,
int modifiers,
List<AnnotationExpr> annotations,
List<TypeParameter> typeParameters,
Type type,
String name,
List<Parameter> parameters,
int arrayCount,
List<ClassOrInterfaceType> throws_,
BlockStmt block) |
MethodDeclaration(int beginLine,
int beginColumn,
int endLine,
int endColumn,
JavadocComment javaDoc,
int modifiers,
List<AnnotationExpr> annotations,
List<TypeParameter> typeParameters,
Type type,
String name,
List<Parameter> parameters,
int arrayCount,
List<ClassOrInterfaceType> throws_,
BlockStmt block,
boolean isDefault) |
MethodDeclaration(JavadocComment javaDoc,
int modifiers,
List<AnnotationExpr> annotations,
List<TypeParameter> typeParameters,
Type type,
String name,
List<Parameter> parameters,
int arrayCount,
List<ClassOrInterfaceType> throws_,
BlockStmt block) |
MethodDeclaration(JavadocComment javaDoc,
int modifiers,
List<AnnotationExpr> annotations,
List<TypeParameter> typeParameters,
Type type,
String name,
List<Parameter> parameters,
int arrayCount,
List<ClassOrInterfaceType> throws_,
BlockStmt block,
boolean isDefault) |
| Modifier and Type | Method and Description |
|---|---|
List<TypeParameter> |
MethodReferenceExpr.getTypeParameters() |
| Modifier and Type | Method and Description |
|---|---|
void |
MethodReferenceExpr.setTypeParameters(List<TypeParameter> typeParameters) |
| Constructor and Description |
|---|
MethodReferenceExpr(int beginLine,
int beginColumn,
int endLine,
int endColumn,
Expression scope,
List<TypeParameter> typeParameters,
String identifier) |
| Modifier and Type | Method and Description |
|---|---|
R |
GenericVisitorAdapter.visit(TypeParameter n,
A arg) |
void |
VoidVisitorAdapter.visit(TypeParameter n,
A arg) |
void |
VoidVisitor.visit(TypeParameter n,
A arg) |
Node |
ModifierVisitorAdapter.visit(TypeParameter n,
A arg) |
R |
GenericVisitor.visit(TypeParameter n,
A arg) |
Boolean |
EqualsVisitor.visit(TypeParameter n1,
Node arg) |
Node |
CloneVisitor.visit(TypeParameter _n,
Object _arg) |
void |
DumpVisitor.visit(TypeParameter n,
Object arg) |
void |
CompositeVisitor.visit(TypeParameter n,
VisitorContext arg) |
Copyright © 2015. All rights reserved.