blob: 5dfd047456d1e29940a0ad93829bc4f880ecda31 [file] [log] [blame]
package org.eclipse.jdt.internal.compiler.env;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
import org.eclipse.jdt.internal.compiler.*;
public interface ISourceField extends IGenericField {
/**
* Answer the source end position of the field's declaration.
*/
int getDeclarationSourceEnd();
/**
* Answer the source start position of the field's declaration.
*/
int getDeclarationSourceStart();
/**
* Answer the source end position of the field's name.
*/
int getNameSourceEnd();
/**
* Answer the source start position of the field's name.
*/
int getNameSourceStart();
/**
* 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.
*/
char[] getTypeName();
}