Eclipse JDT
2.0

org.eclipse.jdt.core.jdom
Interface IDOMMember

All Superinterfaces:
Cloneable, IDOMNode
All Known Subinterfaces:
IDOMField, IDOMInitializer, IDOMMethod, IDOMType

public interface IDOMMember
extends IDOMNode

An IDOMMember defines functionality common to nodes, which can be members of types.

This interface is not intended to be implemented by clients.

See Also:
IDOMType, IDOMMethod, IDOMField, IDOMInitializer

Field Summary
 
Fields inherited from interface org.eclipse.jdt.core.jdom.IDOMNode
COMPILATION_UNIT, FIELD, IMPORT, INITIALIZER, METHOD, PACKAGE, TYPE
 
Method Summary
 String getComment()
          Returns the comment associated with this member (including comment delimiters).
 int getFlags()
          Returns the flags for this member.
 void setComment(String comment)
          Sets the comment associated with this member.
 void setFlags(int flags)
          Sets the flags for this member.
 
Methods inherited from interface org.eclipse.jdt.core.jdom.IDOMNode
addChild, canHaveChildren, clone, getCharacters, getChild, getChildren, getContents, getFirstChild, getJavaElement, getName, getNextNode, getNodeType, getParent, getPreviousNode, insertSibling, isAllowableChild, isSignatureEqual, remove, setName
 

Method Detail

getComment

public String getComment()
Returns the comment associated with this member (including comment delimiters).

Returns:
the comment, or null if this member has no associated comment

getFlags

public int getFlags()
Returns the flags for this member. The flags can be examined using the Flags class.

Returns:
the flags
See Also:
Flags

setComment

public void setComment(String comment)
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.

Parameters:
comment - the comment, including comment delimiters, or null indicating this member should have no associated comment
See Also:
setFlags(int)

setFlags

public void setFlags(int flags)
Sets the flags for this member. The flags can be examined using the Flags class. The deprecated flag passed in is ignored.

Parameters:
flags - the flags
See Also:
Flags

Eclipse JDT
2.0

Copyright (c) IBM Corp. and others 2000, 2002. All Rights Reserved.