Interface MemberCompletion
- All Superinterfaces:
Comparable<org.fife.ui.autocomplete.Completion>, org.fife.ui.autocomplete.Completion, JavaSourceCompletion
- All Known Implementing Classes:
FieldCompletion, MethodCompletion
Extra methods defined by a completion for a Java member (fields and methods).
- Version:
- 1.0
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic interfaceMetadata about the member. -
Method Summary
Modifier and TypeMethodDescriptiongetEnclosingClassName(boolean fullyQualified) Returns the name of the enclosing class.Returns the signature of this member.getType()Returns the type of this member (the return type for methods).booleanReturns whether this member is deprecated.Methods inherited from interface org.fife.ui.autocomplete.Completion
compareTo, getAlreadyEntered, getIcon, getInputText, getProvider, getRelevance, getReplacementText, getSummary, getToolTipTextMethods inherited from interface JavaSourceCompletion
equals, rendererText
-
Method Details
-
getEnclosingClassName
Returns the name of the enclosing class.- Parameters:
fullyQualified- Whether the name returned should be fully qualified.- Returns:
- The class name.
-
getSignature
-
getType
String getType()Returns the type of this member (the return type for methods).- Returns:
- The type of this member.
-
isDeprecated
boolean isDeprecated()Returns whether this member is deprecated.- Returns:
- Whether this member is deprecated.
-