summaryrefslogtreecommitdiffstats
path: root/tdejava/koala/org/trinitydesktop/koala/KEntryKey.java
blob: 0e70f375dd3de0abbdd3a24659d4cee36a6b793b (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
//Auto-generated by kalyptus. DO NOT EDIT.
package org.trinitydesktop.koala;

import org.trinitydesktop.qt.Qt;
import org.trinitydesktop.qt.QtSupport;

/**

 key structure holding both the actual key and the the group
 to which it belongs.
 		@short    key structure holding both the actual key and the the group  to which it belongs.

*/
public class KEntryKey implements QtSupport {
	private long _qt;
	private boolean _allocatedInJavaWorld = true;
	protected KEntryKey(Class dummy){}

	public KEntryKey(String _group, String _key) {
		newKEntryKey(_group,_key);
	}
	private native void newKEntryKey(String _group, String _key);
	public KEntryKey(String _group) {
		newKEntryKey(_group);
	}
	private native void newKEntryKey(String _group);
	public KEntryKey() {
		newKEntryKey();
	}
	private native void newKEntryKey();
	/** 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();
}