summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/StoredTransferJob.java
diff options
context:
space:
mode:
Diffstat (limited to 'kdejava/koala/org/kde/koala/StoredTransferJob.java')
-rw-r--r--kdejava/koala/org/kde/koala/StoredTransferJob.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/kdejava/koala/org/kde/koala/StoredTransferJob.java b/kdejava/koala/org/kde/koala/StoredTransferJob.java
index 6a4248e6..c62500cf 100644
--- a/kdejava/koala/org/kde/koala/StoredTransferJob.java
+++ b/kdejava/koala/org/kde/koala/StoredTransferJob.java
@@ -10,13 +10,13 @@ import org.kde.qt.QtSupport;
StoredTransferJob is a TransferJob (for downloading or uploading data) that
also stores a byte[] with the data, making it simpler to use than the
standard TransferJob.
- For KIO.storedGet it puts the data into the member byte[], so the user
+ For TDEIO.storedGet it puts the data into the member byte[], so the user
of this class can get hold of the whole data at once by calling data()
when the result signal is emitted.
You should only use StoredTransferJob to download data if you cannot
process the data by chunks while it's being downloaded, since storing
everything in a byte[] can potentially require a lot of memory.
- For KIO.storedPut the user of this class simply provides the bytearray from
+ For TDEIO.storedPut the user of this class simply provides the bytearray from
the start, and the job takes care of uploading it.
You should only use StoredTransferJob to upload data if you cannot
provide the in chunks while it's being uploaded, since storing
@@ -45,7 +45,7 @@ public class StoredTransferJob extends TransferJob {
private native void newStoredTransferJob(KURL url, int command, byte[] packedArgs, byte[] _staticData, boolean showProgressInfo);
/**
Set data to be uploaded. This is for put jobs.
- Automatically called by KIO.storedPut(const byte[] &, ...),
+ Automatically called by TDEIO.storedPut(const byte[] &, ...),
do not call this yourself.
@short Set data to be uploaded.
*/