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 / IGenericField.java
index ac1f15e..b590260 100644 (file)
 package net.sourceforge.phpdt.internal.compiler.env;
 
 public interface IGenericField {
-/**
- * Answer an int whose bits are set according the access constants
- * defined by the VM spec.
- */
+       /**
+        * Answer an int whose bits are set according the access constants defined
+        * by the VM spec.
+        */
 
-// We have added AccDeprecated & AccSynthetic.
+       // We have added AccDeprecated & AccSynthetic.
+       int getModifiers();
 
-int getModifiers();
-/**
- * Answer the name of the field.
- */
+       /**
+        * Answer the name of the field.
+        */
 
-char[] getName();
+       char[] getName();
 }