Package org.fife.rsta.ac.java
Interface MemberCompletion
-
- All Superinterfaces:
java.lang.Comparable<org.fife.ui.autocomplete.Completion>,org.fife.ui.autocomplete.Completion,JavaSourceCompletion
- All Known Implementing Classes:
FieldCompletion,MethodCompletion
interface MemberCompletion extends JavaSourceCompletion
Extra methods defined by a completion for a Java member (fields and methods).- Version:
- 1.0
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceMemberCompletion.DataMetadata about the member.
-
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.StringgetType()Returns the type of this member (the return type for methods).booleanisDeprecated()Returns whether this member is deprecated.-
Methods inherited from interface org.fife.ui.autocomplete.Completion
compareTo, getAlreadyEntered, getIcon, getInputText, getProvider, getRelevance, getReplacementText, getSummary, getToolTipText
-
Methods inherited from interface org.fife.rsta.ac.java.JavaSourceCompletion
equals, rendererText
-
-
-
-
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.
-
getType
java.lang.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.
-
-