pt.compiler.parser.ast.body
Class Parameter
java.lang.Object
pt.compiler.parser.ast.Node
pt.compiler.parser.ast.body.Parameter
public final class Parameter
- extends Node
- Author:
- Julio Vilmar Gesser
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Parameter
public Parameter(int line,
int column,
int modifiers,
java.util.List<AnnotationExpr> annotations,
Type type,
boolean isVarArgs,
VariableDeclaratorId id)
getModifiers
public int getModifiers()
getAnnotations
public java.util.List<AnnotationExpr> getAnnotations()
getType
public Type getType()
isVarArgs
public boolean isVarArgs()
getId
public VariableDeclaratorId getId()
accept
public <A> void accept(VoidVisitor<A> v,
A arg)
- Overrides:
accept
in class Node
accept
public <R,A> R accept(GenericVisitor<R,A> v,
A arg)
- Overrides:
accept
in class Node