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

38 lines
1.0 KiB

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