com.github.antlrjavaparser.api.body
Class ConstructorDeclaration
java.lang.Object
com.github.antlrjavaparser.api.Node
com.github.antlrjavaparser.api.body.BodyDeclaration
com.github.antlrjavaparser.api.body.ConstructorDeclaration
public final class ConstructorDeclaration
- extends BodyDeclaration
- Author:
- Julio Vilmar Gesser
Constructor Summary |
ConstructorDeclaration()
|
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<NameExpr> throws_,
BlockStmt block)
|
ConstructorDeclaration(int modifiers,
String name)
|
ConstructorDeclaration(JavadocComment javaDoc,
int modifiers,
List<AnnotationExpr> annotations,
List<TypeParameter> typeParameters,
String name,
List<Parameter> parameters,
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 |
ConstructorDeclaration
public ConstructorDeclaration()
ConstructorDeclaration
public ConstructorDeclaration(int modifiers,
String name)
ConstructorDeclaration
public ConstructorDeclaration(JavadocComment javaDoc,
int modifiers,
List<AnnotationExpr> annotations,
List<TypeParameter> typeParameters,
String name,
List<Parameter> parameters,
List<NameExpr> throws_,
BlockStmt block)
ConstructorDeclaration
public 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<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
getBlock
public BlockStmt getBlock()
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()
getTypeParameters
public List<TypeParameter> getTypeParameters()
setBlock
public void setBlock(BlockStmt block)
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_)
setTypeParameters
public void setTypeParameters(List<TypeParameter> typeParameters)
Copyright © 2013. All Rights Reserved.