X-Git-Url: http://git.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/core/jdom/IDOMMember.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/core/jdom/IDOMMember.java index da5ea6b..ff16067 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/core/jdom/IDOMMember.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/core/jdom/IDOMMember.java @@ -11,51 +11,58 @@ package net.sourceforge.phpdt.core.jdom; /** - * An IDOMMember defines functionality common to nodes, which - * can be members of types. + * An IDOMMember defines functionality common to nodes, which can + * be members of types. *

* This interface is not intended to be implemented by clients. *

- * + * * @see IDOMType * @see IDOMMethod * @see IDOMField * @see IDOMInitializer */ public interface IDOMMember extends IDOMNode { -/** - * Returns the comment associated with this member (including comment delimiters). - * - * @return the comment, or null if this member has no associated - * comment - */ -public String getComment(); -/** - * Returns the flags for this member. The flags can be examined using the - * Flags class. - * - * @return the flags - * @see org.eclipse.jdt.core.Flags - */ -public int getFlags(); -/** - * Sets the comment associated with this member. The comment will appear - * before the member in the source. The comment must be properly formatted, including - * delimiters. A null comment indicates no comment. This member's - * deprecated flag is automatically set to reflect the deprecated tag in the - * comment. - * - * @param comment the comment, including comment delimiters, or - * null indicating this member should have no associated comment - * @see #setFlags - */ -public void setComment(String comment); -/** - * Sets the flags for this member. The flags can be examined using the - * Flags class. The deprecated flag passed in is ignored. - * - * @param flags the flags - * @see org.eclipse.jdt.core.Flags - */ -public void setFlags(int flags); + /** + * Returns the comment associated with this member (including comment + * delimiters). + * + * @return the comment, or null if this member has no + * associated comment + */ + public String getComment(); + + /** + * Returns the flags for this member. The flags can be examined using the + * Flags class. + * + * @return the flags + * @see net.sourceforge.phpdt.core.Flags + */ + public int getFlags(); + + /** + * Sets the comment associated with this member. The comment will appear + * before the member in the source. The comment must be properly formatted, + * including delimiters. A null comment indicates no comment. + * This member's deprecated flag is automatically set to reflect the + * deprecated tag in the comment. + * + * @param comment + * the comment, including comment delimiters, or + * null indicating this member should have no + * associated comment + * @see #setFlags + */ + public void setComment(String comment); + + /** + * Sets the flags for this member. The flags can be examined using the + * Flags class. The deprecated flag passed in is ignored. + * + * @param flags + * the flags + * @see net.sourceforge.phpdt.core.Flags + */ + public void setFlags(int flags); }