| Package | Description |
|---|---|
| com.github.javaparser.ast.body | |
| com.github.javaparser.ast.expr | |
| com.github.javaparser.ast.visitor |
| Modifier and Type | Method and Description |
|---|---|
List<TypeParameter> |
ConstructorDeclaration.getTypeParameters() |
List<TypeParameter> |
ClassOrInterfaceDeclaration.getTypeParameters() |
List<TypeParameter> |
MethodDeclaration.getTypeParameters() |
| Modifier and Type | Method and Description |
|---|---|
void |
ConstructorDeclaration.setTypeParameters(List<TypeParameter> typeParameters) |
void |
ClassOrInterfaceDeclaration.setTypeParameters(List<TypeParameter> typeParameters) |
void |
MethodDeclaration.setTypeParameters(List<TypeParameter> typeParameters) |
| Constructor and Description |
|---|
ClassOrInterfaceDeclaration(int beginLine,
int beginColumn,
int endLine,
int endColumn,
int modifiers,
List<AnnotationExpr> annotations,
boolean isInterface,
String name,
List<TypeParameter> typeParameters,
List<ClassOrInterfaceType> extendsList,
List<ClassOrInterfaceType> implementsList,
List<BodyDeclaration> members) |
ClassOrInterfaceDeclaration(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,
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<ReferenceType> throws_,
BlockStmt body) |
MethodDeclaration(int modifiers,
List<AnnotationExpr> annotations,
List<TypeParameter> typeParameters,
Type type,
String name,
List<Parameter> parameters,
int arrayCount,
List<ReferenceType> throws_,
BlockStmt body) |
| 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 |
GenericVisitor.visit(TypeParameter n,
A arg) |
void |
VoidVisitor.visit(TypeParameter n,
A arg) |
void |
VoidVisitorAdapter.visit(TypeParameter n,
A arg) |
Node |
ModifierVisitorAdapter.visit(TypeParameter n,
A arg) |
R |
GenericVisitorAdapter.visit(TypeParameter n,
A arg) |
Boolean |
EqualsVisitor.visit(TypeParameter n1,
Node arg) |
void |
DumpVisitor.visit(TypeParameter n,
Object arg) |
Node |
CloneVisitor.visit(TypeParameter _n,
Object _arg) |
Copyright © 2007–2016. All rights reserved.