summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/KShellProcess.java
blob: 228770c89d183dc95437c8ada5646ae6bf3cedc3 (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
33
34
35
36
37
38
39
40
41
42
43
44
45
//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;

/**

 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 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();
}