pt.compiler.parser.ast.body
Class AnnotationMemberDeclaration
java.lang.Object
pt.compiler.parser.ast.Node
pt.compiler.parser.ast.body.BodyDeclaration
pt.compiler.parser.ast.body.AnnotationMemberDeclaration
public final class AnnotationMemberDeclaration
- extends BodyDeclaration
- Author:
- Julio Vilmar Gesser
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
AnnotationMemberDeclaration
public AnnotationMemberDeclaration(int line,
int column,
JavadocComment javaDoc,
int modifiers,
java.util.List<AnnotationExpr> annotations,
Type type,
java.lang.String name,
Expression defaultValue)
getModifiers
public int getModifiers()
getAnnotations
public java.util.List<AnnotationExpr> getAnnotations()
getType
public Type getType()
getName
public java.lang.String getName()
getDefaultValue
public Expression getDefaultValue()
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