summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/KDiskFreeSp.java
diff options
context:
space:
mode:
Diffstat (limited to 'kdejava/koala/org/kde/koala/KDiskFreeSp.java')
-rw-r--r--kdejava/koala/org/kde/koala/KDiskFreeSp.java57
1 files changed, 57 insertions, 0 deletions
diff --git a/kdejava/koala/org/kde/koala/KDiskFreeSp.java b/kdejava/koala/org/kde/koala/KDiskFreeSp.java
new file mode 100644
index 00000000..32efa15a
--- /dev/null
+++ b/kdejava/koala/org/kde/koala/KDiskFreeSp.java
@@ -0,0 +1,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.QObject;
+import org.kde.qt.QObject;
+
+/**
+
+ 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 QObject {
+ protected KDiskFreeSp(Class dummy){super((Class) null);}
+ public KDiskFreeSp(QObject parent, String name) {
+ super((Class) null);
+ newKDiskFreeSp(parent,name);
+ }
+ private native void newKDiskFreeSp(QObject parent, String name);
+ public KDiskFreeSp(QObject parent) {
+ super((Class) null);
+ newKDiskFreeSp(parent);
+ }
+ private native void newKDiskFreeSp(QObject 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();
+}