Uses of Interface
jline.Completor
-
-
Uses of Completor in jline
Classes in jline that implement Completor Modifier and Type Class Description classArgumentCompletorACompletorimplementation that invokes a child completor using the appropriate separator argument.classClassNameCompletorA Completor implementation that completes java class names.classFileNameCompletorA file name completor takes the buffer and issues a list of potential completions.classMultiCompletorA completor that contains multiple embedded completors.classNullCompletorA completor that does nothing.classSimpleCompletorA simpleCompletorimplementation that handles a pre-defined list of completion words.Methods in jline that return Completor Modifier and Type Method Description Completor[]MultiCompletor. getCompletors()Methods in jline with parameters of type Completor Modifier and Type Method Description booleanConsoleReader. addCompletor(Completor completor)Add the specifiedCompletorto the list of handlers for tab-completion.booleanConsoleReader. removeCompletor(Completor completor)Remove the specifiedCompletorfrom the list of handlers for tab-completion.voidMultiCompletor. setCompletors(Completor[] completors)Constructors in jline with parameters of type Completor Constructor Description ArgumentCompletor(Completor completor)Constuctor: create a new completor with the default argument separator of " ".ArgumentCompletor(Completor[] completors)Constuctor: create a new completor with the default argument separator of " ".ArgumentCompletor(Completor[] completors, ArgumentCompletor.ArgumentDelimiter delim)Constuctor: create a new completor with the specified argument delimiter.ArgumentCompletor(Completor completor, ArgumentCompletor.ArgumentDelimiter delim)Constuctor: create a new completor with the specified argument delimiter.MultiCompletor(Completor[] completors)Construct a MultiCompletor with the specifiedCompletorinstances.
-