X-Git-Url: http://git.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/env/IGenericField.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/env/IGenericField.java index ac1f15e..b590260 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/env/IGenericField.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/env/IGenericField.java @@ -11,17 +11,17 @@ 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(); }