summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/KDirNotify.java
diff options
context:
space:
mode:
Diffstat (limited to 'kdejava/koala/org/kde/koala/KDirNotify.java')
-rw-r--r--kdejava/koala/org/kde/koala/KDirNotify.java50
1 files changed, 50 insertions, 0 deletions
diff --git a/kdejava/koala/org/kde/koala/KDirNotify.java b/kdejava/koala/org/kde/koala/KDirNotify.java
new file mode 100644
index 00000000..28c97604
--- /dev/null
+++ b/kdejava/koala/org/kde/koala/KDirNotify.java
@@ -0,0 +1,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
+}