diff options
Diffstat (limited to 'kdejava/koala/org/kde/koala/TDEConfigGroup.java')
-rw-r--r-- | kdejava/koala/org/kde/koala/TDEConfigGroup.java | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/kdejava/koala/org/kde/koala/TDEConfigGroup.java b/kdejava/koala/org/kde/koala/TDEConfigGroup.java deleted file mode 100644 index 344597e8..00000000 --- a/kdejava/koala/org/kde/koala/TDEConfigGroup.java +++ /dev/null @@ -1,53 +0,0 @@ -//Auto-generated by kalyptus. DO NOT EDIT. -package org.kde.koala; - -import org.kde.qt.Qt; -import org.kde.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(); -} |