summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/KConfigBase.java
diff options
context:
space:
mode:
Diffstat (limited to 'kdejava/koala/org/kde/koala/KConfigBase.java')
-rw-r--r--kdejava/koala/org/kde/koala/KConfigBase.java24
1 files changed, 12 insertions, 12 deletions
diff --git a/kdejava/koala/org/kde/koala/KConfigBase.java b/kdejava/koala/org/kde/koala/KConfigBase.java
index 92ca8bd5..5baa01ff 100644
--- a/kdejava/koala/org/kde/koala/KConfigBase.java
+++ b/kdejava/koala/org/kde/koala/KConfigBase.java
@@ -18,14 +18,14 @@ import org.kde.qt.TQObject;
This class forms the base for all %KDE configuration. It is an
abstract base class, meaning that you cannot directly instantiate
- objects of this class. Either use KConfig (for usual %KDE
+ objects of this class. Either use TDEConfig (for usual %KDE
configuration) or KSimpleConfig (for special needs as in ksamba), or
even KSharedConfig (stores values in shared memory).
All configuration entries are key, value pairs. Each entry also
belongs to a specific group of related entries. All configuration
entries that do not explicitly specify which group they are in are
in a special group called the default group.
- If there is a $ character in an entry, KConfigBase tries to expand
+ If there is a $ character in an entry, TDEConfigBase tries to expand
environment variable and uses its value instead of its name. You
can avoid this feature by having two consecutive $ characters in
your config file which get expanded to one.
@@ -35,13 +35,13 @@ import org.kde.qt.TQObject;
@short KDE Configuration Management abstract base class.
@see TDEGlobal#config
- @see KConfig
+ @see TDEConfig
@see KSimpleConfig
@see KSharedConfig
*/
-public class KConfigBase extends TQObject {
- protected KConfigBase(Class dummy){super((Class) null);}
+public class TDEConfigBase extends TQObject {
+ protected TDEConfigBase(Class dummy){super((Class) null);}
/**
Possible return values for getConfigState().
@short Possible return values for getConfigState().
@@ -54,8 +54,8 @@ public class KConfigBase extends TQObject {
public native TQMetaObject metaObject();
public native String className();
/**
- Construct a KConfigBase object.
- @short Construct a KConfigBase object.
+ Construct a TDEConfigBase object.
+ @short Construct a TDEConfigBase object.
*/
/**
Specifies the group in which keys will be read and written.
@@ -739,11 +739,11 @@ public class KConfigBase extends TQObject {
public native boolean deleteGroup(String group, boolean bDeep);
public native boolean deleteGroup(String group);
/**
- Turns on or off "dollar expansion" (see KConfigBase introduction)
+ Turns on or off "dollar expansion" (see TDEConfigBase introduction)
when reading config entries.
Dollar sign expansion is initially OFF.
@param _bExpand Tf true, dollar expansion is turned on.
- @short Turns on or off "dollar expansion" (see KConfigBase introduction) when reading config entries.
+ @short Turns on or off "dollar expansion" (see TDEConfigBase introduction) when reading config entries.
*/
public native void setDollarExpansion(boolean _bExpand);
public native void setDollarExpansion();
@@ -757,12 +757,12 @@ public class KConfigBase extends TQObject {
/**
Mark the config object as "clean," i.e. don't write dirty entries
at destruction time. If <code>bDeep</code> is false, only the global dirty
- flag of the KConfig object gets cleared. If you then call
+ flag of the TDEConfig object gets cleared. If you then call
writeEntry() again, the global dirty flag is set again and all
dirty entries will be written at a subsequent sync() call.
- Classes that derive from KConfigBase should override this
+ Classes that derive from TDEConfigBase should override this
method and implement storage-specific behavior, as well as
- calling the KConfigBase.rollback() explicitly in the initializer.
+ calling the TDEConfigBase.rollback() explicitly in the initializer.
@param bDeep If true, the dirty flags of all entries are cleared,
as well as the global dirty flag.
@short Mark the config object as "clean," i.