summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/KProcIO.java
diff options
context:
space:
mode:
Diffstat (limited to 'kdejava/koala/org/kde/koala/KProcIO.java')
-rw-r--r--kdejava/koala/org/kde/koala/KProcIO.java22
1 files changed, 11 insertions, 11 deletions
diff --git a/kdejava/koala/org/kde/koala/KProcIO.java b/kdejava/koala/org/kde/koala/KProcIO.java
index 8b69d198..ca16f431 100644
--- a/kdejava/koala/org/kde/koala/KProcIO.java
+++ b/kdejava/koala/org/kde/koala/KProcIO.java
@@ -10,7 +10,7 @@ import org.kde.qt.TQTextCodec;
KProcIO
This class provides a slightly simpler interface to the communication
- functions provided by KProcess. The simplifications are:
+ functions provided by TDEProcess. The simplifications are:
<li>
The buffer for a write is copied to an internal KProcIO
@@ -27,14 +27,14 @@ import org.kde.qt.TQTextCodec;
</li>
Basically, KProcIO gives you buffered I/O similar to fgets()/fputs().
Aside from these, and the fact that start() takes different
- parameters, use this class just like KProcess.
+ parameters, use this class just like TDEProcess.
See {@link KProcIOSignals} for signals emitted by KProcIO
@author David Sweet
- @short A slightly simpler interface to KProcess.
+ @short A slightly simpler interface to TDEProcess.
*/
-public class KProcIO extends KProcess {
+public class KProcIO extends TDEProcess {
protected KProcIO(Class dummy){super((Class) null);}
public native TQMetaObject metaObject();
public native String className();
@@ -53,12 +53,12 @@ public class KProcIO extends KProcess {
}
private native void newKProcIO();
/**
- Sets the communication mode to be passed to KProcess.start()
- by start(). The default communication mode is KProcess.All.
+ Sets the communication mode to be passed to TDEProcess.start()
+ by start(). The default communication mode is TDEProcess.All.
You probably want to use this function in conjunction with
- KProcess.setUsePty().
+ TDEProcess.setUsePty().
@param comm the communication mode
- @short Sets the communication mode to be passed to KProcess.start() by start().
+ @short Sets the communication mode to be passed to TDEProcess.start() by start().
*/
public native void setComm(int comm);
/**
@@ -81,7 +81,7 @@ public class KProcIO extends KProcess {
</li>
@param runmode For a detailed description of the
various run modes, have a look at the
- general description of the KProcess class.
+ general description of the TDEProcess class.
@param includeStderr If true, data from both stdout and stderr is
listened to. If false, only stdout is listened to.
@return true on success, false on error.
@@ -161,8 +161,8 @@ public class KProcIO extends KProcess {
*/
public native void enableReadSignals(boolean enable);
protected native void controlledEmission();
- protected native void received(KProcess proc, String buffer, int buflen);
- protected native void sent(KProcess arg1);
+ protected native void received(TDEProcess proc, String buffer, int buflen);
+ protected native void sent(TDEProcess arg1);
/** Deletes the wrapped C++ instance */
protected native void finalize() throws InternalError;
/** Delete the wrapped C++ instance ahead of finalize() */