org.eclipse.jdt.internal.compiler.env
Interface IBinaryField

All Superinterfaces:
IGenericField
All Known Implementing Classes:
FieldInfo, FieldInfoWithAnnotation

public interface IBinaryField
extends IGenericField


Method Summary
 IBinaryAnnotation[] getAnnotations()
          Answer the runtime visible and invisible annotations for this field or null if none.
 Constant getConstant()
           
 char[] getGenericSignature()
          Answer the receiver's signature which describes the parameter & return types as specified in section 4.4.4 of the Java 2 VM spec.
 char[] getName()
          Answer the name of the field.
 long getTagBits()
          Answer the tagbits set according to the bits for annotations.
 char[] getTypeName()
          Answer the resolved name of the receiver's type in the class file format as specified in section 4.3.2 of the Java 2 VM spec.
 
Methods inherited from interface org.eclipse.jdt.internal.compiler.env.IGenericField
getModifiers
 

Method Detail

getAnnotations

IBinaryAnnotation[] getAnnotations()
Answer the runtime visible and invisible annotations for this field or null if none.


getConstant

Constant getConstant()
Returns:
org.eclipse.jdt.internal.compiler.Constant

getGenericSignature

char[] getGenericSignature()
Answer the receiver's signature which describes the parameter & return types as specified in section 4.4.4 of the Java 2 VM spec.


getName

char[] getName()
Answer the name of the field.


getTagBits

long getTagBits()
Answer the tagbits set according to the bits for annotations.


getTypeName

char[] getTypeName()
Answer the resolved name of the receiver's type in the class file format as specified in section 4.3.2 of the Java 2 VM spec. For example: - java.lang.String is Ljava/lang/String; - an int is I - a 2 dimensional array of strings is [[Ljava/lang/String; - an array of floats is [F