You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdebindings/kdejava/koala/org/kde/koala/KShellProcess.java

46 lines
1.4 KiB

//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.koala;
import org.kde.qt.Qt;
import org.kde.qt.QMetaObject;
import org.kde.qt.QtSupport;
/**
Use KProcess and KProcess.setUseShell(true) instead.
@author Christian Czezatke <e9025461@student.tuwien.ac.at>
@short A class derived from KProcess to start child processes through a shell.
*/
public class KShellProcess extends KProcess {
protected KShellProcess(Class dummy){super((Class) null);}
public native QMetaObject 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();
}