summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/KDirNotify.java
blob: 28c9760430e7fe222a42437f2105a30234b2e03a (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
//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.koala;

import org.kde.qt.Qt;
import org.kde.qt.QtSupport;
import java.util.ArrayList;

/**

 An abstract class that receives notifications of added and removed files
 in any directory, local or remote.
 The information comes from the konqueror/kdesktop instance where the
 operation was done, and can interest KDirListers, bookmark handlers, etc.
 		@short    An abstract class that receives notifications of added and removed files  in any directory, local or remote.

*/
public class KDirNotify extends DCOPObject  {
	protected KDirNotify(Class dummy){super((Class) null);}
	/**	
		 Notify that files have been added in <code>directory</code>
		 Note: this is ASYNC so that it can be used with a broadcast.
			@param directory the directory that contains the new files
		   		@short    Notify that files have been added in <code>directory</code>  Note: this is ASYNC so that it can be used with a broadcast.
	*/
	// void FilesAdded(const KURL& arg1); >>>> NOT CONVERTED
	/**	
		 Notify that files have been deleted.
		 Note: this is ASYNC so that it can be used with a broadcast
			@param fileList the files that have been deleted
		   		@short    Notify that files have been deleted.
	*/
	// void FilesRemoved(const KURL::List& arg1); >>>> NOT CONVERTED
	/**	
		 Notify that files have been changed.
		 At the moment, this is only used for new icon, but it could be
		 used for size etc. as well.
		 Note: this is ASYNC so that it can be used with a broadcast.
			@param fileList the list of changed files
		   		@short    Notify that files have been changed.
	*/
	// void FilesChanged(const KURL::List& arg1); >>>> NOT CONVERTED
	/**	
		 Notify that a file has been renamed.
		 Note: this is ASYNC so that it can be used with a broadcast
			@param src a list containing original names of the renamed files
			@param dst a list of original names of the renamed files
		   		@short    Notify that a file has been renamed.
	*/
	// void FileRenamed(const KURL& arg1,const KURL& arg2); >>>> NOT CONVERTED
}