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

40 lines
1.2 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.QDataStream;
/**
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(QDataStream _str, int offset) {
super((Class) null);
newKExecMimeType(_str,offset);
}
private native void newKExecMimeType(QDataStream _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();
}