Java org.eclipse.jdt.core.dom AnnotationTypeMemberDeclaration fields, constructors, methods, implement or subclass

Example usage for Java org.eclipse.jdt.core.dom AnnotationTypeMemberDeclaration fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.eclipse.jdt.core.dom AnnotationTypeMemberDeclaration.

The text is from its open source code.

Field

ChildPropertyDescriptorTYPE_PROPERTY
The "type" structural property of this node type (child type: Type ).
ChildPropertyDescriptorNAME_PROPERTY
The "name" structural property of this node type (child type: SimpleName ).
ChildPropertyDescriptorDEFAULT_PROPERTY
The "default" structural property of this node type (child type: Expression ).

Constructor

AnnotationTypeMemberDeclaration(AST ast)
Creates a new AST node for an annotation type member declaration owned by the given AST.

Method

ExpressiongetDefault()
Returns the default value of this annotation type member, or null if there is none.
SimpleNamegetName()
Returns the name of the annotation type member declared in this declaration.
TypegetType()
Returns the type of the annotation type member declared in this declaration.
IMethodBindingresolveBinding()
Resolves and returns the binding for the annotation type member declared in this declaration.
voidsetDefault(Expression defaultValue)
Sets or clears the default value of this annotation type member.
voidsetName(SimpleName memberName)
Sets the name of the annotation type member declared in this declaration to the given name.
voidsetType(Type type)
Sets the type of the annotation type member declared in this declaration to the given type.