summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/KEntryKey.java
diff options
context:
space:
mode:
Diffstat (limited to 'kdejava/koala/org/kde/koala/KEntryKey.java')
-rw-r--r--kdejava/koala/org/kde/koala/KEntryKey.java37
1 files changed, 37 insertions, 0 deletions
diff --git a/kdejava/koala/org/kde/koala/KEntryKey.java b/kdejava/koala/org/kde/koala/KEntryKey.java
new file mode 100644
index 00000000..c2181298
--- /dev/null
+++ b/kdejava/koala/org/kde/koala/KEntryKey.java
@@ -0,0 +1,37 @@
+//Auto-generated by kalyptus. DO NOT EDIT.
+package org.kde.koala;
+
+import org.kde.qt.Qt;
+import org.kde.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();
+}