summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/KCompletionSignals.java
blob: 5061411e1d827fcbadb9f9cc23182e81b05a02d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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 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();
}