summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/DeleteJob.java
blob: 80dc523203f3da220c05fa743f4a9175f5757053 (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
//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;
import java.util.ArrayList;

/**

 A more complex Job to delete files and directories.
 Don't create the job directly, but use KIO.del() instead.
 See {@link DeleteJobSignals} for signals emitted by DeleteJob
		@short    A more complex Job to delete files and directories.
		@see #del

*/
public class DeleteJob extends Job  {
	protected DeleteJob(Class dummy){super((Class) null);}
	public native TQMetaObject metaObject();
	public native String className();
	/**	
		 Do not create a DeleteJob directly. Use KIO.del()
		 instead.
			@param src the list of URLs to delete
			@param shred true to shred (make sure that data is not recoverable)a
			@param showProgressInfo true to show progress information to the user
				@short    Do not create a DeleteJob directly.
		@see #del
	*/
	public DeleteJob(ArrayList src, boolean shred, boolean showProgressInfo) {
		super((Class) null);
		newDeleteJob(src,shred,showProgressInfo);
	}
	private native void newDeleteJob(ArrayList src, boolean shred, boolean showProgressInfo);
	/**	
		 Returns the list of URLs.
				@return the list of URLs.
	 
		@short    Returns the list of URLs.
	*/
	public native ArrayList urls();
	protected native void slotStart();
	// void slotEntries(TDEIO::Job* arg1,const TDEIO::UDSEntryList& arg2); >>>> NOT CONVERTED
	protected native void slotResult(Job job);
	/**	
		 Forward signal from subjob
		         		@short    Forward signal from subjob
	*/
	protected native void slotProcessedSize(Job arg1, long data_size);
	protected native void slotReport();
}