org.kde.koala
Interface KCompletionSignals


public interface KCompletionSignals


Method Summary
 void match(java.lang.String item)
          The matching item.
 void matches(java.lang.String[] matchlist)
          All matching items.
 void multipleMatches()
          This signal is emitted, when calling makeCompletion() and more than one matching item is found.
 

Method Detail

match

void match(java.lang.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

matches

void matches(java.lang.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

multipleMatches

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

See Also:
#hasMultipleMatches