org.eclipse.jdt.internal.compiler.env
接口 ISourceField

所有超级接口:
IGenericField

public interface ISourceField
extends IGenericField


方法摘要
 int getDeclarationSourceEnd()
          Answer the source end position of the field's declaration.
 int getDeclarationSourceStart()
          Answer the source start position of the field's declaration.
 char[] getInitializationSource()
          Answer the initialization source for this constant field.
 int getNameSourceEnd()
          Answer the source end position of the field's name.
 int getNameSourceStart()
          Answer the source start position of the field's name.
 char[] getTypeName()
          Answer the type name of the field.
 
从接口 org.eclipse.jdt.internal.compiler.env.IGenericField 继承的方法
getModifiers
 

方法详细信息

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.



Copyright © 2013. All Rights Reserved.