Package | Description |
---|---|
com.github.javaparser | |
com.github.javaparser.ast.body | |
com.github.javaparser.ast.expr | |
com.github.javaparser.ast.visitor |
Modifier and Type | Method and Description |
---|---|
static Parameter |
ASTHelper.createParameter(Type type,
String name)
Creates a new
Parameter . |
Modifier and Type | Method and Description |
---|---|
static void |
ASTHelper.addParameter(MethodDeclaration method,
Parameter parameter)
Adds the given parameter to the method.
|
Modifier and Type | Method and Description |
---|---|
List<Parameter> |
ConstructorDeclaration.getParameters() |
List<Parameter> |
MethodDeclaration.getParameters() |
Modifier and Type | Method and Description |
---|---|
void |
ConstructorDeclaration.setParameters(List<Parameter> parameters) |
void |
MethodDeclaration.setParameters(List<Parameter> parameters) |
Constructor and Description |
---|
ConstructorDeclaration(int beginLine,
int beginColumn,
int endLine,
int endColumn,
int modifiers,
List<AnnotationExpr> annotations,
List<TypeParameter> typeParameters,
String name,
List<Parameter> parameters,
List<NameExpr> throws_,
BlockStmt block) |
ConstructorDeclaration(int modifiers,
List<AnnotationExpr> annotations,
List<TypeParameter> typeParameters,
String name,
List<Parameter> parameters,
List<NameExpr> throws_,
BlockStmt block) |
MethodDeclaration(int beginLine,
int beginColumn,
int endLine,
int endColumn,
int modifiers,
List<AnnotationExpr> annotations,
List<TypeParameter> typeParameters,
Type type,
String name,
List<Parameter> parameters,
int arrayCount,
List<NameExpr> throws_,
BlockStmt block) |
MethodDeclaration(int modifiers,
List<AnnotationExpr> annotations,
List<TypeParameter> typeParameters,
Type type,
String name,
List<Parameter> parameters,
int arrayCount,
List<NameExpr> throws_,
BlockStmt block) |
MethodDeclaration(int modifiers,
Type type,
String name,
List<Parameter> parameters) |
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 |
---|---|
void |
VoidVisitorAdapter.visit(Parameter n,
A arg) |
R |
GenericVisitorAdapter.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) |
void |
DumpVisitor.visit(Parameter n,
Object arg) |
Node |
CloneVisitor.visit(Parameter _n,
Object _arg) |
Copyright © 2007-2015. All Rights Reserved.