| java.lang.Object org.acm.seguin.completer.info.MemberInfo
All known Subclasses: org.acm.seguin.completer.info.ClassInfo, org.acm.seguin.completer.info.MethodInfo, org.acm.seguin.completer.info.ConstructorInfo, org.acm.seguin.completer.info.FieldInfo,
MemberInfo | abstract public class MemberInfo implements Serializable,Comparable(Code) | | The base class for class, field, constructor, and method info structures.
author: Jason Ginchereau |
compareTo | final public int compareTo(Object o)(Code) | | Just calls compareTo(MemberInfo) .
|
compareTo | abstract public int compareTo(MemberInfo mi)(Code) | | Implements a consistent sorting policy for all MemberInfo
items that is primarily based on their simple name.
|
getComment | final public String getComment()(Code) | | Gets the comment associated with this member.
the javadoc comment, or null if there is no commentassociated with this member. |
getDeclaringClass | final public String getDeclaringClass()(Code) | | Gets the fully-qualified name of the class that declares this member.
|
getModifiers | final public int getModifiers()(Code) | | Gets the modifiers mask of this member, that can be decoded using the
java.lang.reflect.Modifier class.
|
getName | final public String getName()(Code) | | Gets the simple name of this member.
|
getOneLineComment | final public String getOneLineComment()(Code) | | Gets the one-line comment associated with this member.
the first-sentence portion of the javadoc comment, ornull if there is no comment associated withthis member. |
getSourceLocation | final public SourceLocation getSourceLocation()(Code) | | Gets the location in the source code where this member was
declared.
the SourceLocation , orSourceLocation.UNKNOWN if the location is unknown. |
getType | abstract public String getType()(Code) | | Gets the fully-qualified type of this member.
|
modifiersToString | static String modifiersToString(int modifiers)(Code) | | |
setComment | final public void setComment(String comment)(Code) | | |
|
|