A massive organize imports and formatting of the sources using default Eclipse code...
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / core / IField.java
index 10aba92..ebfaf25 100644 (file)
@@ -17,31 +17,36 @@ package net.sourceforge.phpdt.core;
  * </p>
  */
 public interface IField extends IMember {
-/**
- * Returns the constant value associated with this field
- * or <code>null</code> if this field has none.
- * Returns either a subclass of <code>Number</code>, or a <code>String</code>,
- * depending on the type of the field.
- * For example, if the field is of type <code>short</code>, this returns
- * a <code>Short</code>.
- *
- * @return  the constant value associated with this field or <code>null</code> if this field has none.
- * @exception JavaModelException if this element does not exist or if an
- *      exception occurs while accessing its corresponding resource
- */
-public Object getConstant() throws JavaModelException;
-/**
- * Returns the simple name of this field.
- * @return the simple name of this field.
- */
-String getElementName();
-/**
- * Returns the type signature of this field.
- *
- * @see Signature
- * @return the type signature of this field.
- * @exception JavaModelException if this element does not exist or if an
- *      exception occurs while accessing its corresponding resource
- */
-String getTypeSignature() throws JavaModelException;
+       /**
+        * Returns the constant value associated with this field or
+        * <code>null</code> if this field has none. Returns either a subclass of
+        * <code>Number</code>, or a <code>String</code>, depending on the
+        * type of the field. For example, if the field is of type
+        * <code>short</code>, this returns a <code>Short</code>.
+        * 
+        * @return the constant value associated with this field or
+        *         <code>null</code> if this field has none.
+        * @exception JavaModelException
+        *                if this element does not exist or if an exception occurs
+        *                while accessing its corresponding resource
+        */
+       public Object getConstant() throws JavaModelException;
+
+       /**
+        * Returns the simple name of this field.
+        * 
+        * @return the simple name of this field.
+        */
+       String getElementName();
+
+       /**
+        * Returns the type signature of this field.
+        * 
+        * @see Signature
+        * @return the type signature of this field.
+        * @exception JavaModelException
+        *                if this element does not exist or if an exception occurs
+        *                while accessing its corresponding resource
+        */
+       String getTypeSignature() throws JavaModelException;
 }