com.github.antlrjavaparser.api.body
Class MethodDeclaration
java.lang.Object
com.github.antlrjavaparser.api.Node
com.github.antlrjavaparser.api.body.BodyDeclaration
com.github.antlrjavaparser.api.body.MethodDeclaration
public final class MethodDeclaration
- extends BodyDeclaration
- Author:
- Julio Vilmar Gesser
Constructor Summary |
MethodDeclaration()
|
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<NameExpr> throws_,
BlockStmt block)
|
MethodDeclaration(int modifiers,
Type type,
String name)
|
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<NameExpr> throws_,
BlockStmt block)
|
Methods inherited from class com.github.antlrjavaparser.api.Node |
equals, getBeginColumn, getBeginComments, getBeginLine, getData, getEndColumn, getEndComments, getEndLine, getInternalComments, hashCode, setBeginColumn, setBeginComments, setBeginLine, setData, setEndColumn, setEndComments, setEndLine, setInternalComments, toString |
MethodDeclaration
public MethodDeclaration()
MethodDeclaration
public MethodDeclaration(int modifiers,
Type type,
String name)
MethodDeclaration
public MethodDeclaration(int modifiers,
Type type,
String name,
List<Parameter> parameters)
MethodDeclaration
public MethodDeclaration(JavadocComment javaDoc,
int modifiers,
List<AnnotationExpr> annotations,
List<TypeParameter> typeParameters,
Type type,
String name,
List<Parameter> parameters,
int arrayCount,
List<NameExpr> throws_,
BlockStmt block)
MethodDeclaration
public 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<NameExpr> throws_,
BlockStmt block)
accept
public <R,A> R accept(GenericVisitor<R,A> v,
A arg)
- Description copied from class:
Node
- Accept method for visitor support.
- Specified by:
accept
in class Node
- Type Parameters:
R
- the type the return value of the visitorA
- the type the argument passed for the visitor- Parameters:
v
- the visitor implementationarg
- any value relevant for the visitor
- Returns:
- the result of the visit
accept
public <A> void accept(VoidVisitor<A> v,
A arg)
- Description copied from class:
Node
- Accept method for visitor support.
- Specified by:
accept
in class Node
- Type Parameters:
A
- the type the argument passed for the visitor- Parameters:
v
- the visitor implementationarg
- any value relevant for the visitor
getArrayCount
public int getArrayCount()
getBody
public BlockStmt getBody()
getModifiers
public int getModifiers()
- Return the modifiers of this member declaration.
- Returns:
- modifiers
- See Also:
ModifierSet
getName
public String getName()
getParameters
public List<Parameter> getParameters()
getThrows
public List<NameExpr> getThrows()
getType
public Type getType()
getTypeParameters
public List<TypeParameter> getTypeParameters()
setArrayCount
public void setArrayCount(int arrayCount)
setBody
public void setBody(BlockStmt body)
setModifiers
public void setModifiers(int modifiers)
setName
public void setName(String name)
setParameters
public void setParameters(List<Parameter> parameters)
setThrows
public void setThrows(List<NameExpr> throws_)
setType
public void setType(Type type)
setTypeParameters
public void setTypeParameters(List<TypeParameter> typeParameters)
Copyright © 2013. All Rights Reserved.