summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/MimetypeJob.java
diff options
context:
space:
mode:
Diffstat (limited to 'kdejava/koala/org/kde/koala/MimetypeJob.java')
-rw-r--r--kdejava/koala/org/kde/koala/MimetypeJob.java51
1 files changed, 0 insertions, 51 deletions
diff --git a/kdejava/koala/org/kde/koala/MimetypeJob.java b/kdejava/koala/org/kde/koala/MimetypeJob.java
deleted file mode 100644
index 539da604..00000000
--- a/kdejava/koala/org/kde/koala/MimetypeJob.java
+++ /dev/null
@@ -1,51 +0,0 @@
-//Auto-generated by kalyptus. DO NOT EDIT.
-package org.kde.koala;
-
-import org.kde.qt.Qt;
-import org.kde.qt.TQMetaObject;
-import org.kde.qt.QtSupport;
-
-/**
-
- A MimetypeJob is a TransferJob that allows you to get
- the mime type of an URL. Don't create directly,
- but use TDEIO.mimetype() instead.
- @short A MimetypeJob is a TransferJob that allows you to get the mime type of an URL.
- @see #mimetype
-
-*/
-public class MimetypeJob extends TransferJob {
- protected MimetypeJob(Class dummy){super((Class) null);}
- public native TQMetaObject metaObject();
- public native String className();
- /**
- Do not create a MimetypeJob directly. Use TDEIO.mimetype()
- instead.
- @param url the url to get
- @param command the command to issue
- @param packedArgs the arguments
- @param showProgressInfo true to show progress information to the user
- @short Do not create a MimetypeJob directly.
- */
- public MimetypeJob(KURL url, int command, byte[] packedArgs, boolean showProgressInfo) {
- super((Class) null);
- newMimetypeJob(url,command,packedArgs,showProgressInfo);
- }
- private native void newMimetypeJob(KURL url, int command, byte[] packedArgs, boolean showProgressInfo);
- /**
- Call this in the slot connected to result,
- and only after making sure no error happened.
- @return the mimetype of the URL
-
- @short Call this in the slot connected to result, and only after making sure no error happened.
- */
- public native String mimetype();
- /**
- Called by the scheduler when a slave gets to
- work on this job.
- @param slave the slave that works on the job
- @short
- */
- public native void start(Slave slave);
- protected native void slotFinished();
-}