Package jline

Interface Completor

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      int complete​(java.lang.String buffer, int cursor, java.util.List candidates)
      Populates candidates with a list of possible completions for the buffer.
    • Method Detail

      • complete

        int complete​(java.lang.String buffer,
                     int cursor,
                     java.util.List candidates)
        Populates candidates with a list of possible completions for the buffer. The candidates list will not be sorted before being displayed to the user: thus, the complete method should sort the List before returning.
        Parameters:
        buffer - the buffer
        candidates - the List of candidates to populate
        Returns:
        the index of the buffer for which the completion will be relative