summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/TDECompletionSignals.java
diff options
context:
space:
mode:
Diffstat (limited to 'kdejava/koala/org/kde/koala/TDECompletionSignals.java')
-rw-r--r--kdejava/koala/org/kde/koala/TDECompletionSignals.java32
1 files changed, 32 insertions, 0 deletions
diff --git a/kdejava/koala/org/kde/koala/TDECompletionSignals.java b/kdejava/koala/org/kde/koala/TDECompletionSignals.java
new file mode 100644
index 00000000..269b8440
--- /dev/null
+++ b/kdejava/koala/org/kde/koala/TDECompletionSignals.java
@@ -0,0 +1,32 @@
+//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 TDECompletionSignals {
+ /**
+ 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();
+}