Interface MemberCompletion

All Superinterfaces:
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 interface 
    Metadata about the member.
  • Method Summary

    Modifier and Type
    Method
    Description
    getEnclosingClassName(boolean fullyQualified)
    Returns the name of the enclosing class.
    Returns the signature of this member.
    Returns the type of this member (the return type for methods).
    boolean
    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 Details

    • getEnclosingClassName

      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

      String getSignature()
      Returns the signature of this member.
      Returns:
      The signature.
    • 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.