summaryrefslogtreecommitdiffstats
path: root/tdejava/koala/org/trinitydesktop/koala/TDEConfigGroup.java
diff options
context:
space:
mode:
Diffstat (limited to 'tdejava/koala/org/trinitydesktop/koala/TDEConfigGroup.java')
-rw-r--r--tdejava/koala/org/trinitydesktop/koala/TDEConfigGroup.java53
1 files changed, 53 insertions, 0 deletions
diff --git a/tdejava/koala/org/trinitydesktop/koala/TDEConfigGroup.java b/tdejava/koala/org/trinitydesktop/koala/TDEConfigGroup.java
new file mode 100644
index 00000000..7b7efc73
--- /dev/null
+++ b/tdejava/koala/org/trinitydesktop/koala/TDEConfigGroup.java
@@ -0,0 +1,53 @@
+//Auto-generated by kalyptus. DO NOT EDIT.
+package org.trinitydesktop.koala;
+
+import org.trinitydesktop.qt.Qt;
+import org.trinitydesktop.qt.QtSupport;
+
+/**
+
+ A TDEConfigBase derived class for one specific group in a TDEConfig object.
+ @short A TDEConfigBase derived class for one specific group in a TDEConfig object.
+
+*/
+public class TDEConfigGroup extends TDEConfigBase {
+ protected TDEConfigGroup(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 TDEConfigGroup(TDEConfigBase master, String group) {
+ super((Class) null);
+ newTDEConfigGroup(master,group);
+ }
+ private native void newTDEConfigGroup(TDEConfigBase 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();
+}