Package org.fife.rsta.ac.java
Interface MemberCompletion.Data
-
- All Superinterfaces:
IconFactory.IconData
- All Known Implementing Classes:
FieldData,FieldInfoData,MethodData,MethodInfoData
- Enclosing interface:
- MemberCompletion
public static interface MemberCompletion.Data extends IconFactory.IconData
Metadata about the member. Member completions will be constructed from a concrete instance of this interface. This is because there are two sources that member completions come from - parsing Java source files and parsing compiled class files (in libraries).
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetEnclosingClassName(boolean fullyQualified)Returns the name of the enclosing class.java.lang.StringgetSignature()Returns the signature of this member.java.lang.StringgetSummary()Returns the summary description (should be HTML) for this member.java.lang.StringgetType()Returns the type of this member (the return type for methods).booleanisConstructor()Returns whether this member is a constructor.-
Methods inherited from interface org.fife.rsta.ac.java.IconFactory.IconData
getIcon, isAbstract, isDeprecated, isFinal, isStatic
-
-
-
-
Method Detail
-
getEnclosingClassName
java.lang.String getEnclosingClassName(boolean fullyQualified)
Returns the name of the enclosing class.- Parameters:
fullyQualified- Whether the name returned should be fully qualified.- Returns:
- The class name.
-
getSignature
java.lang.String getSignature()
Returns the signature of this member.- Returns:
- The signature.
- See Also:
MemberCompletion.getSignature()
-
getSummary
java.lang.String getSummary()
Returns the summary description (should be HTML) for this member.- Returns:
- The summary description, or
nullif there is none. - See Also:
Completion.getSummary()
-
getType
java.lang.String getType()
Returns the type of this member (the return type for methods).- Returns:
- The type of this member.
- See Also:
MemberCompletion.getType()
-
isConstructor
boolean isConstructor()
Returns whether this member is a constructor.- Returns:
- Whether this member is a constructor.
-
-