//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(); }