summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/KExecMimeType.java
blob: 045ef65d1363f36994d851d1934fa9b96b4291d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
//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();
}