c921aaa4f9a4400a5bdca7088529a949d1c8b288
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / env / ISourceField.java
1 /*******************************************************************************
2  * Copyright (c) 2000, 2001, 2002 International Business Machines Corp. and others.
3  * All rights reserved. This program and the accompanying materials 
4  * are made available under the terms of the Common Public License v0.5 
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/cpl-v05.html
7  * 
8  * Contributors:
9  *     IBM Corporation - initial API and implementation
10  ******************************************************************************/
11 package net.sourceforge.phpdt.internal.compiler.env;
12
13 public interface ISourceField extends IGenericField {
14 /**
15  * Answer the source end position of the field's declaration.
16  */
17
18 int getDeclarationSourceEnd();
19 /**
20  * Answer the source start position of the field's declaration.
21  */
22
23 int getDeclarationSourceStart();
24 /**
25  * Answer the source end position of the field's name.
26  */
27
28 int getNameSourceEnd();
29 /**
30  * Answer the source start position of the field's name.
31  */
32
33 int getNameSourceStart();
34 /**
35  * Answer the type name of the field.
36  *
37  * The name is a simple name or a qualified, dot separated name.
38  * For example, Hashtable or java.util.Hashtable.
39  */
40
41 char[] getTypeName();
42 }