//Auto-generated by kalyptus. DO NOT EDIT. package org.trinitydesktop.koala; import org.trinitydesktop.qt.Qt; import org.trinitydesktop.qt.QtSupport; import org.trinitydesktop.qt.TQDataStream; /** The mime type for executable files. @short MimeType for any executable, like /bin/ls. */ public class KExecMimeType extends KMimeType { protected KExecMimeType(Class dummy){super((Class) null);} /** Construct a executable mimetype and take all information from a desktop file. @param config the desktop configuration file that describes the mime type @short Construct a executable mimetype and take all information from a desktop file. */ public KExecMimeType(KDesktopFile config) { super((Class) null); newKExecMimeType(config); } private native void newKExecMimeType(KDesktopFile config); /** \internal @short \internal */ public KExecMimeType(TQDataStream _str, int offset) { super((Class) null); newKExecMimeType(_str,offset); } private native void newKExecMimeType(TQDataStream _str, int offset); /** 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(); }