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 / IBinaryField.java
index c36a81b..d075191 100644 (file)
@@ -13,21 +13,20 @@ package net.sourceforge.phpdt.internal.compiler.env;
 import net.sourceforge.phpdt.internal.compiler.impl.Constant;
 
 public interface IBinaryField extends IGenericField {
-/**
- * 
- * @return net.sourceforge.phpdt.internal.compiler.Constant
- */
-Constant getConstant();
-/**
- * Answer the resolved name of the receiver's type in the
- * class file format as specified in section 4.3.2 of the Java 2 VM spec.
- *
- * For example:
- *   - java.lang.String is Ljava/lang/String;
- *   - an int is I
- *   - a 2 dimensional array of strings is [[Ljava/lang/String;
- *   - an array of floats is [F
- */
+       /**
+        * 
+        * @return net.sourceforge.phpdt.internal.compiler.Constant
+        */
+       Constant getConstant();
+
+       /**
+        * Answer the resolved name of the receiver's type in the class file format
+        * as specified in section 4.3.2 of the Java 2 VM spec.
+        * 
+        * For example: - java.lang.String is Ljava/lang/String; - an int is I - a 2
+        * dimensional array of strings is [[Ljava/lang/String; - an array of floats
+        * is [F
+        */
 
-char[] getTypeName();
+       char[] getTypeName();
 }