org.kde.koala
public class KConfigGroup extends KConfigBase
UNKNOWN: A KConfigBase derived class for one specific group in a KConfig object.
| Constructor Summary | |
|---|---|
| protected | KConfigGroup(Class dummy) |
| KConfigGroup(KConfigBase master, String group)
Construct a config group corresponding to group in master.
group is the group name encoded in UTF-8. | |
| Method Summary | |
|---|---|
| void | deleteGroup(boolean bGlobal)
Delete all entries in the entire group |
| void | deleteGroup() |
| void | dispose() Delete the wrapped C++ instance ahead of finalize() |
| protected void | finalize() Deletes the wrapped C++ instance |
| boolean | groupIsImmutable()
Checks whether it is possible to change this group. |
| boolean | isDisposed() Has the wrapped C++ instance been deleted? |
| KEntry | lookupData(KEntryKey _key) |
| void | putData(KEntryKey _key, KEntry _data, boolean _checkGroup) |
| void | putData(KEntryKey _key, KEntry _data) |
| void | setDirty(boolean b) |
| void | sync() |
group in master.
group is the group name encoded in UTF-8.UNKNOWN: Construct a config group corresponding to group in master.
Parameters: bGlobal If bGlobal is true, the entries are not removed
from the application specific config file, but from the global
KDE config file.
UNKNOWN: Delete all entries in the entire group
Returns: whether changes may be made to this group in this configuration file.
UNKNOWN: Checks whether it is possible to change this group.