summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/KShellCompletion.java
diff options
context:
space:
mode:
authorDarrell Anderson <humanreadable@yahoo.com>2014-01-08 20:06:00 +0100
committerSlávek Banko <slavek.banko@axis.cz>2014-01-08 20:06:00 +0100
commit636f509299122d02087c6fd62e1e4a46dbd22026 (patch)
tree70e43efceeb5b00e7f19cdac8da44928bd2fb459 /kdejava/koala/org/kde/koala/KShellCompletion.java
parent719b61750c08343f530068ed4127623aeac71cf0 (diff)
downloadtdebindings-636f509299122d02087c6fd62e1e4a46dbd22026.tar.gz
tdebindings-636f509299122d02087c6fd62e1e4a46dbd22026.zip
Rename many classes to avoid conflicts with KDE
Diffstat (limited to 'kdejava/koala/org/kde/koala/KShellCompletion.java')
-rw-r--r--kdejava/koala/org/kde/koala/KShellCompletion.java51
1 files changed, 0 insertions, 51 deletions
diff --git a/kdejava/koala/org/kde/koala/KShellCompletion.java b/kdejava/koala/org/kde/koala/KShellCompletion.java
deleted file mode 100644
index 5a2c43f5..00000000
--- a/kdejava/koala/org/kde/koala/KShellCompletion.java
+++ /dev/null
@@ -1,51 +0,0 @@
-//Auto-generated by kalyptus. DO NOT EDIT.
-package org.kde.koala;
-
-import org.kde.qt.Qt;
-import org.kde.qt.TQMetaObject;
-import org.kde.qt.QtSupport;
-
-/**
-
- This class does shell-like completion of file names.
- A string passed to makeCompletion() will be interpreted as a shell
- command line. Completion will be done on the last argument on the line.
- Returned matches consist of the first arguments (uncompleted) plus the
- completed last argument.
- @author David Smith <dsmith@algonet.se>
-
- @short Shell-like completion of file names.
-
-*/
-public class KShellCompletion extends KURLCompletion {
- protected KShellCompletion(Class dummy){super((Class) null);}
- public native TQMetaObject metaObject();
- public native String className();
- /**
- Constructs a KShellCompletion object.
- @short Constructs a KShellCompletion object.
- */
- public KShellCompletion() {
- super((Class) null);
- newKShellCompletion();
- }
- private native void newKShellCompletion();
- /**
- Finds completions to the given text.
- The first match is returned and emitted in the signal match().
- @param text the text to complete
- @return the first match, or null if not found
-
- @short Finds completions to the given text.
- */
- public native String makeCompletion(String text);
- protected native void postProcessMatch(StringBuffer match);
- protected native void postProcessMatches(String[] matches);
- // void postProcessMatches(TDECompletionMatches* arg1); >>>> NOT CONVERTED
- /** Deletes the wrapped C++ instance */
- protected native void finalize() throws InternalError;
- /** Delete the wrapped C++ instance ahead of finalize() */
- public native void dispose();
- /** Has the wrapped C++ instance been deleted? */
- public native boolean isDisposed();
-}