blob: ca201c150b2ed9895e3d790de6cc487500c51851 (
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
54
55
56
|
//Auto-generated by kalyptus. DO NOT EDIT.
package org.trinitydesktop.koala;
import org.trinitydesktop.qt.TQt;
import org.trinitydesktop.qt.TQMetaObject;
import org.trinitydesktop.qt.QtSupport;
/**
The FileCopyJob copies data from one place to another.
@short The FileCopyJob copies data from one place to another.
@see #file_copy
@see #file_move
*/
public class FileCopyJob extends Job {
protected FileCopyJob(Class dummy){super((Class) null);}
public native TQMetaObject metaObject();
public native String className();
/**
Do not create a FileCopyJob directly. Use TDEIO.file_move()
or TDEIO.file_copy() instead.
@param src the source URL
@param dest the destination URL
@param permissions the permissions of the resulting resource
@param move true to move, false to copy
@param overwrite true to allow overwriting, false otherwise
@param resume true to resume an operation, false otherwise
@param showProgressInfo true to show progress information to the user
@short Do not create a FileCopyJob directly.
*/
/**
If you know the size of the source file, call this method
to inform this job. It will be displayed in the "resume" dialog.
@param size the size of the source file
@short If you know the size of the source file, call this method to inform this job.
*/
public native void setSourceSize64(long size);
/**
Returns the source URL.
@return the source URL
@short Returns the source URL.
*/
public native KURL srcURL();
/**
Returns the destination URL.
@return the destination URL
@short Returns the destination URL.
*/
public native KURL destURL();
public native void slotStart();
public native void slotData(Job arg1, byte[] data);
public native void slotDataReq(Job arg1, byte[] data);
}
|