X-Git-Url: http://git.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/env/ISourceField.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/env/ISourceField.java index 2cb6e1d..a2f4139 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/env/ISourceField.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/env/ISourceField.java @@ -11,37 +11,37 @@ package net.sourceforge.phpdt.internal.compiler.env; public interface ISourceField extends IGenericField { -/** - * Answer the source end position of the field's declaration. - */ -int getDeclarationSourceEnd(); + /** + * Answer the source end position of the field's declaration. + */ + int getDeclarationSourceEnd(); -/** - * Answer the source start position of the field's declaration. - */ -int getDeclarationSourceStart(); + /** + * Answer the source start position of the field's declaration. + */ + int getDeclarationSourceStart(); -/** - * Answer the initialization source for this constant field. - * Answer null if the field is not a constant or if it has no initialization. - */ -char[] getInitializationSource(); + /** + * Answer the initialization source for this constant field. Answer null if + * the field is not a constant or if it has no initialization. + */ + char[] getInitializationSource(); -/** - * Answer the source end position of the field's name. - */ -int getNameSourceEnd(); + /** + * Answer the source end position of the field's name. + */ + int getNameSourceEnd(); -/** - * Answer the source start position of the field's name. - */ -int getNameSourceStart(); + /** + * Answer the source start position of the field's name. + */ + int getNameSourceStart(); -/** - * Answer the type name of the field. - * - * The name is a simple name or a qualified, dot separated name. - * For example, Hashtable or java.util.Hashtable. - */ -char[] getTypeName(); + /** + * Answer the type name of the field. + * + * The name is a simple name or a qualified, dot separated name. For + * example, Hashtable or java.util.Hashtable. + */ + char[] getTypeName(); }