//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 mountPoint. 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 mountPoint. */ public native int readDF(String mountPoint); /** Call this to fire a search on the disk usage information for the mount point containing path. 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 path. */ 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(); }