com.github.antlrjavaparser.api.body
Class MethodDeclaration

java.lang.Object
  extended by com.github.antlrjavaparser.api.Node
      extended by com.github.antlrjavaparser.api.body.BodyDeclaration
          extended by 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)
           
 
Method Summary
<R,A> R
accept(GenericVisitor<R,A> v, A arg)
          Accept method for visitor support.
<A> void
accept(VoidVisitor<A> v, A arg)
          Accept method for visitor support.
 int getArrayCount()
           
 BlockStmt getBody()
           
 int getModifiers()
          Return the modifiers of this member declaration.
 String getName()
           
 List<Parameter> getParameters()
           
 List<NameExpr> getThrows()
           
 Type getType()
           
 List<TypeParameter> getTypeParameters()
           
 void setArrayCount(int arrayCount)
           
 void setBody(BlockStmt body)
           
 void setModifiers(int modifiers)
           
 void setName(String name)
           
 void setParameters(List<Parameter> parameters)
           
 void setThrows(List<NameExpr> throws_)
           
 void setType(Type type)
           
 void setTypeParameters(List<TypeParameter> typeParameters)
           
 
Methods inherited from class com.github.antlrjavaparser.api.body.BodyDeclaration
getAnnotations, getJavaDoc, setAnnotations, setJavaDoc
 
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
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

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)
Method Detail

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 visitor
A - the type the argument passed for the visitor
Parameters:
v - the visitor implementation
arg - 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 implementation
arg - 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.