X-Git-Url: http://secure.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/env/IGenericMethod.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/env/IGenericMethod.java index 5c17762..4f915f1 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/env/IGenericMethod.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/env/IGenericMethod.java @@ -11,26 +11,26 @@ 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 & for a clinit method. - */ -char[] getSelector(); + /** + * Answer the name of the method. + * + * For a constructor, answer & 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(); }