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/KDiskFreeSp.java

58 lines
2.1 KiB

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