Interface MemberCompletion

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Interface Description
      static interface  MemberCompletion.Data
      Metadata about the member.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.lang.String getEnclosingClassName​(boolean fullyQualified)
      Returns the name of the enclosing class.
      java.lang.String getSignature()
      Returns the signature of this member.
      java.lang.String getType()
      Returns the type of this member (the return type for methods).
      boolean isDeprecated()
      Returns whether this member is deprecated.
      • Methods inherited from interface org.fife.ui.autocomplete.Completion

        compareTo, getAlreadyEntered, getIcon, getInputText, getProvider, getRelevance, getReplacementText, getSummary, getToolTipText
    • 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.