//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 group in master. group is the group name encoded in UTF-8. @short Construct a config group corresponding to group in master. */ 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 bGlobal 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(); }