summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/KDiskFreeSp.java
blob: 4920caa95046dfb283a506844fc88248ab9502dc (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
46
47
48
49
50
51
52
53
54
55
56
57
//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.koala;

import org.kde.qt.Qt;
import org.kde.qt.QtSupport;
import org.kde.qt.TQObject;
import org.kde.qt.TQObject;

/**

 This class parses the output of "df" to find the disk usage
 information for a given partition (mount point).
  See {@link KDiskFreeSpSignals} for signals emitted by KDiskFreeSp
		@short    This class parses the output of "df" to find the disk usage  information for a given partition (mount point).

*/
public class KDiskFreeSp extends TQObject  {
	protected KDiskFreeSp(Class dummy){super((Class) null);}
	public KDiskFreeSp(TQObject parent, String name) {
		super((Class) null);
		newKDiskFreeSp(parent,name);
	}
	private native void newKDiskFreeSp(TQObject parent, String name);
	public KDiskFreeSp(TQObject parent) {
		super((Class) null);
		newKDiskFreeSp(parent);
	}
	private native void newKDiskFreeSp(TQObject parent);
	public KDiskFreeSp() {
		super((Class) null);
		newKDiskFreeSp();
	}
	private native void newKDiskFreeSp();
	/**	
		 Call this to fire a search on the disk usage information
		 for <code>mountPoint.</code> foundMountPoint will be emitted
		 if this mount point is found, with the info requested.
		 done is emitted in any case.
		    		@short    Call this to fire a search on the disk usage information  for <code>mountPoint.</code>
	*/
	public native int readDF(String mountPoint);
	/**	
		 Call this to fire a search on the disk usage information
		 for the mount point containing <code>path.</code>
		 foundMountPoint will be emitted
		 if this mount point is found, with the info requested.
		 done is emitted in any case.
		    		@short    Call this to fire a search on the disk usage information  for the mount point containing <code>path.</code>
	*/
	public static native KDiskFreeSp findUsageInfo(String path);
	/** 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();
}