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();
}