| 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<Parameter> |
MethodDeclaration.getParameters() |
List<Parameter> |
ConstructorDeclaration.getParameters() |
| Modifier and Type | Method and Description |
|---|---|
void |
MethodDeclaration.setParameters(List<Parameter> parameters) |
void |
ConstructorDeclaration.setParameters(List<Parameter> parameters) |
| Constructor and Description |
|---|
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(int modifiers,
Type type,
String name,
List<Parameter> parameters) |
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<Parameter> |
LambdaExpr.getParameters() |
| Modifier and Type | Method and Description |
|---|---|
void |
LambdaExpr.setParameters(List<Parameter> parameters) |
| Constructor and Description |
|---|
LambdaExpr(int beginLine,
int beginColumn,
int endLine,
int endColumn,
List<Parameter> parameters,
Statement body,
boolean parametersEnclosed) |
| Modifier and Type | Method and Description |
|---|---|
R |
GenericVisitorAdapter.visit(Parameter n,
A arg) |
void |
VoidVisitorAdapter.visit(Parameter n,
A arg) |
void |
VoidVisitor.visit(Parameter n,
A arg) |
Node |
ModifierVisitorAdapter.visit(Parameter n,
A arg) |
R |
GenericVisitor.visit(Parameter n,
A arg) |
Boolean |
EqualsVisitor.visit(Parameter n1,
Node arg) |
Node |
CloneVisitor.visit(Parameter _n,
Object _arg) |
void |
DumpVisitor.visit(Parameter n,
Object arg) |
void |
CompositeVisitor.visit(Parameter n,
VisitorContext arg) |
Copyright © 2015. All rights reserved.