diff options
Diffstat (limited to 'kdejava/koala/org/kde/koala/KCModuleInfo.java')
-rw-r--r-- | kdejava/koala/org/kde/koala/KCModuleInfo.java | 56 |
1 files changed, 28 insertions, 28 deletions
diff --git a/kdejava/koala/org/kde/koala/KCModuleInfo.java b/kdejava/koala/org/kde/koala/KCModuleInfo.java index de3f3679..c1461b1c 100644 --- a/kdejava/koala/org/kde/koala/KCModuleInfo.java +++ b/kdejava/koala/org/kde/koala/KCModuleInfo.java @@ -7,71 +7,71 @@ import java.util.ArrayList; /** - A class that provides information about a KCModule - KCModuleInfo provides various technical information, such as icon, library - etc. about a KCModule.n + A class that provides information about a TDECModule + TDECModuleInfo provides various technical information, such as icon, library + etc. about a TDECModule.n @note Any values set with the set functions is not - written back with KCModuleInfo it only reads value from the desktop file. + written back with TDECModuleInfo it only reads value from the desktop file. @author Daniel Molkentin <molkentin@kde.org> - @short A class that provides information about a KCModule + @short A class that provides information about a TDECModule */ -public class KCModuleInfo implements QtSupport { +public class TDECModuleInfo implements QtSupport { private long _qt; private boolean _allocatedInJavaWorld = true; - protected KCModuleInfo(Class dummy){} + protected TDECModuleInfo(Class dummy){} /** - Constructs a KCModuleInfo. - @note a KCModuleInfo object will have to be manually deleted, it is not + Constructs a TDECModuleInfo. + @note a TDECModuleInfo object will have to be manually deleted, it is not done automatically for you. @param desktopFile the desktop file representing the module, or the name of the module. - @short Constructs a KCModuleInfo. + @short Constructs a TDECModuleInfo. */ - public KCModuleInfo(String desktopFile) { - newKCModuleInfo(desktopFile); + public TDECModuleInfo(String desktopFile) { + newTDECModuleInfo(desktopFile); } - private native void newKCModuleInfo(String desktopFile); + private native void newTDECModuleInfo(String desktopFile); /** Same as above but takes a KService.Ptr as argument. @note <code>moduleInfo</code> must be a valid pointer. @param moduleInfo specifies the module @short Same as above but takes a KService.Ptr as argument. */ - // KCModuleInfo* KCModuleInfo(KService::Ptr arg1); >>>> NOT CONVERTED + // TDECModuleInfo* TDECModuleInfo(KService::Ptr arg1); >>>> NOT CONVERTED /** - Same as above but takes a KCModuleInfo as argument. + Same as above but takes a TDECModuleInfo as argument. @param rhs specifies the module - @short Same as above but takes a KCModuleInfo as argument. + @short Same as above but takes a TDECModuleInfo as argument. */ - public KCModuleInfo(KCModuleInfo rhs) { - newKCModuleInfo(rhs); + public TDECModuleInfo(TDECModuleInfo rhs) { + newTDECModuleInfo(rhs); } - private native void newKCModuleInfo(KCModuleInfo rhs); + private native void newTDECModuleInfo(TDECModuleInfo rhs); /** - Same as above but creates an empty KCModuleInfo. + Same as above but creates an empty TDECModuleInfo. You should not normally call this. - @short Same as above but creates an empty KCModuleInfo. + @short Same as above but creates an empty TDECModuleInfo. */ - public KCModuleInfo() { - newKCModuleInfo(); + public TDECModuleInfo() { + newTDECModuleInfo(); } - private native void newKCModuleInfo(); + private native void newTDECModuleInfo(); /** Equal operator @return true if <code>rhs</code> equals itself @short Equal operator */ - public native boolean op_equals(KCModuleInfo rhs); + public native boolean op_equals(TDECModuleInfo rhs); /** @return true if <code>rhs</code> is not equal itself @short */ - public native boolean op_not_equals(KCModuleInfo rhs); + public native boolean op_not_equals(TDECModuleInfo rhs); /** @return the filename of the .desktop file that describes the KCM @@ -217,9 +217,9 @@ public class KCModuleInfo implements QtSupport { */ protected native void setDocPath(String p); /** - Reads the service entries specific for KCModule from the desktop file. + Reads the service entries specific for TDECModule from the desktop file. The usual desktop entries are read in init. - @short Reads the service entries specific for KCModule from the desktop file. + @short Reads the service entries specific for TDECModule from the desktop file. */ protected native void loadAll(); /** Deletes the wrapped C++ instance */ |