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 / IGenericMethod.java
index 5c17762..4f915f1 100644 (file)
 package net.sourceforge.phpdt.internal.compiler.env;
 
 public interface IGenericMethod {
-/**
- * Answer an int whose bits are set according the access constants
- * defined by the VM spec.
- */
-// We have added AccDeprecated & AccSynthetic.
-int getModifiers();
+       /**
+        * Answer an int whose bits are set according the access constants defined
+        * by the VM spec.
+        */
+       // We have added AccDeprecated & AccSynthetic.
+       int getModifiers();
 
-/**
- * Answer the name of the method.
- *
- * For a constructor, answer <init> & <clinit> for a clinit method.
- */
-char[] getSelector();
+       /**
+        * Answer the name of the method.
+        * 
+        * For a constructor, answer <init> & <clinit> for a clinit method.
+        */
+       char[] getSelector();
 
-boolean isConstructor();
+       boolean isConstructor();
 
-/**
- * Answer the names of the argument
- * or null if the argument names are not available.
- */
+       /**
+        * Answer the names of the argument or null if the argument names are not
+        * available.
+        */
 
-char[][] getArgumentNames();
+       char[][] getArgumentNames();
 }