A massive organize imports and formatting of the sources using default Eclipse code...
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / env / ISourceField.java
index 2cb6e1d..a2f4139 100644 (file)
 package net.sourceforge.phpdt.internal.compiler.env;
 
 public interface ISourceField extends IGenericField {
-/**
- * Answer the source end position of the field's declaration.
- */
-int getDeclarationSourceEnd();
+       /**
+        * 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 start position of the field's declaration.
+        */
+       int getDeclarationSourceStart();
 
-/**
- * Answer the initialization source for this constant field.
- * Answer null if the field is not a constant or if it has no initialization.
- */
-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.
+        */
+       char[] getInitializationSource();
 
-/**
- * Answer the source end position of the field's name.
- */
-int getNameSourceEnd();
+       /**
+        * 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 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();
+       /**
+        * 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();
 }