Interface ISourceField
- All Superinterfaces:
IGenericField
- All Known Implementing Classes:
SourceFieldElementInfo,SourceFieldWithChildrenInfo
-
Method Summary
Modifier and TypeMethodDescriptionintAnswer the source end position of the field's declaration.intAnswer the source start position of the field's declaration.char[]Answer the initialization source for this constant field.intAnswer the source end position of the field's name.intAnswer the source start position of the field's name.char[]Answer the type name of the field.Methods inherited from interface org.aspectj.org.eclipse.jdt.internal.compiler.env.IGenericField
getModifiers
-
Method Details
-
getDeclarationSourceEnd
int getDeclarationSourceEnd()Answer the source end position of the field's declaration. -
getDeclarationSourceStart
int getDeclarationSourceStart()Answer the source start position of the field's declaration. -
getInitializationSource
char[] getInitializationSource()Answer the initialization source for this constant field. Answer null if the field is not a constant or if it has no initialization. -
getNameSourceEnd
int getNameSourceEnd()Answer the source end position of the field's name. -
getNameSourceStart
int getNameSourceStart()Answer the source start position of the field's name. -
getTypeName
char[] getTypeName()Answer the type name of the field. The name is a simple name or a qualified, dot separated name. For example, Hashtable or java.util.Hashtable.
-