diff options
Diffstat (limited to 'tdejava/koala/org/trinitydesktop/koala/KShellProcess.java')
-rw-r--r-- | tdejava/koala/org/trinitydesktop/koala/KShellProcess.java | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/tdejava/koala/org/trinitydesktop/koala/KShellProcess.java b/tdejava/koala/org/trinitydesktop/koala/KShellProcess.java new file mode 100644 index 00000000..e8ce1914 --- /dev/null +++ b/tdejava/koala/org/trinitydesktop/koala/KShellProcess.java @@ -0,0 +1,45 @@ +//Auto-generated by kalyptus. DO NOT EDIT. +package org.trinitydesktop.koala; + +import org.trinitydesktop.qt.Qt; +import org.trinitydesktop.qt.TQMetaObject; +import org.trinitydesktop.qt.QtSupport; + +/** + + Use TDEProcess and TDEProcess.setUseShell(true) instead. + @author Christian Czezatke <e9025461@student.tuwien.ac.at> + + @short A class derived from TDEProcess to start child processes through a shell. + +*/ +public class KShellProcess extends TDEProcess { + protected KShellProcess(Class dummy){super((Class) null);} + public native TQMetaObject metaObject(); + public native String className(); + /** + Constructor + If no shellname is specified, the user's default shell is used. + @short Constructor + */ + public KShellProcess(String shellname) { + super((Class) null); + newKShellProcess(shellname); + } + private native void newKShellProcess(String shellname); + public KShellProcess() { + super((Class) null); + newKShellProcess(); + } + private native void newKShellProcess(); + public native boolean start(int runmode, int comm); + public native boolean start(int runmode); + public native boolean start(); + public static native String quote(String arg); + /** 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(); +} |