summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/KConfigGroup.java
diff options
context:
space:
mode:
Diffstat (limited to 'kdejava/koala/org/kde/koala/KConfigGroup.java')
-rw-r--r--kdejava/koala/org/kde/koala/KConfigGroup.java53
1 files changed, 53 insertions, 0 deletions
diff --git a/kdejava/koala/org/kde/koala/KConfigGroup.java b/kdejava/koala/org/kde/koala/KConfigGroup.java
new file mode 100644
index 00000000..668d57e2
--- /dev/null
+++ b/kdejava/koala/org/kde/koala/KConfigGroup.java
@@ -0,0 +1,53 @@
+//Auto-generated by kalyptus. DO NOT EDIT.
+package org.kde.koala;
+
+import org.kde.qt.Qt;
+import org.kde.qt.QtSupport;
+
+/**
+
+ A KConfigBase derived class for one specific group in a KConfig object.
+ @short A KConfigBase derived class for one specific group in a KConfig object.
+
+*/
+public class KConfigGroup extends KConfigBase {
+ protected KConfigGroup(Class dummy){super((Class) null);}
+ /**
+ Construct a config group corresponding to <code>group</code> in <code>master.</code>
+ <code>group</code> is the group name encoded in UTF-8.
+ @short Construct a config group corresponding to <code>group</code> in <code>master.</code>
+ */
+ public KConfigGroup(KConfigBase master, String group) {
+ super((Class) null);
+ newKConfigGroup(master,group);
+ }
+ private native void newKConfigGroup(KConfigBase master, String group);
+ /**
+ Delete all entries in the entire group
+ @param bGlobal If <code>bGlobal</code> is true, the entries are not removed
+ from the application specific config file, but from the global
+ KDE config file.
+ @short Delete all entries in the entire group
+ */
+ public native void deleteGroup(boolean bGlobal);
+ public native void deleteGroup();
+ /**
+ Checks whether it is possible to change this group.
+ @return whether changes may be made to this group in this configuration
+ file.
+
+ @short Checks whether it is possible to change this group.
+ */
+ public native boolean groupIsImmutable();
+ public native void setDirty(boolean b);
+ public native void putData(KEntryKey _key, KEntry _data, boolean _checkGroup);
+ public native void putData(KEntryKey _key, KEntry _data);
+ public native KEntry lookupData(KEntryKey _key);
+ public native void sync();
+ /** 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();
+}