//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; /** The MultiGetJob is a TransferJob that allows you to get several files from a single server. Don't create directly, but use KIO.multi_get() instead. See {@link MultiGetJobSignals} for signals emitted by MultiGetJob @short The MultiGetJob is a TransferJob that allows you to get several files from a single server. @see #multi_get */ public class MultiGetJob extends TransferJob { protected MultiGetJob(Class dummy){super((Class) null);} public native TQMetaObject metaObject(); public native String className(); /** Do not create a MultiGetJob directly, use KIO.multi_get() instead. @param url the first url to get @param showProgressInfo true to show progress information to the user @short Do not create a MultiGetJob directly, use KIO.multi_get() instead. */ public MultiGetJob(KURL url, boolean showProgressInfo) { super((Class) null); newMultiGetJob(url,showProgressInfo); } private native void newMultiGetJob(KURL url, boolean showProgressInfo); /** Called by the scheduler when a slave gets to work on this job. @param slave the slave that starts working on this job @short */ public native void start(Slave slave); /** Get an additional file. @param id the id of the file @param url the url of the file to get @param metaData the meta data for this request @short Get an additional file. */ // void get(long arg1,const KURL& arg2,const TDEIO::MetaData& arg3); >>>> NOT CONVERTED protected native void slotRedirection(KURL url); protected native void slotFinished(); protected native void slotData(byte[] data); protected native void slotMimetype(String mimetype); }