//Auto-generated by kalyptus. DO NOT EDIT. package org.kde.koala; import org.kde.qt.TQMetaObject; import org.kde.qt.QtSupport; import java.util.ArrayList; public interface KCompletionSignals { /** The matching item. Will be emitted by makeCompletion(), previousMatch() or nextMatch(). May be null if there is no matching item. @param item the match, or null if there is none @short The matching item. */ void match(String item); /** All matching items. Will be emitted by makeCompletion() in shell- completion-mode, when the same string is passed to makeCompletion twice or more often. @param matchlist the list of matches @short All matching items. */ void matches(String[] matchlist); /** This signal is emitted, when calling makeCompletion() and more than one matching item is found. @short This signal is emitted, when calling makeCompletion() and more than one matching item is found. @see #hasMultipleMatches */ void multipleMatches(); }