org.kde.koala

Interface KCompletionSignals

public interface KCompletionSignals

Method Summary
voidmatch(String item)
The matching item.
voidmatches(String[] matchlist)
All matching items.
voidmultipleMatches()
This signal is emitted, when calling makeCompletion() and more than one matching item is found.

Method Detail

match

public void match(String item)
The matching item. Will be emitted by makeCompletion(), previousMatch() or nextMatch(). May be null if there is no matching item.

Parameters: item the match, or null if there is none

UNKNOWN: The matching item.

matches

public void matches(String[] matchlist)
All matching items. Will be emitted by makeCompletion() in shell- completion-mode, when the same string is passed to makeCompletion twice or more often.

Parameters: matchlist the list of matches

UNKNOWN: All matching items.

multipleMatches

public void multipleMatches()
This signal is emitted, when calling makeCompletion() and more than one matching item is found.

See Also: KCompletionSignals

UNKNOWN: This signal is emitted, when calling makeCompletion() and more than one matching item is found.