summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/MultiGetJob.java
blob: d298b7a433eb0ad70c0205e1339be4d12e7f4a61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
//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 <code>slave</code> 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);
}