summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/KWritePermsIcon.java
diff options
context:
space:
mode:
Diffstat (limited to 'kdejava/koala/org/kde/koala/KWritePermsIcon.java')
-rw-r--r--kdejava/koala/org/kde/koala/KWritePermsIcon.java61
1 files changed, 0 insertions, 61 deletions
diff --git a/kdejava/koala/org/kde/koala/KWritePermsIcon.java b/kdejava/koala/org/kde/koala/KWritePermsIcon.java
deleted file mode 100644
index 5b486e21..00000000
--- a/kdejava/koala/org/kde/koala/KWritePermsIcon.java
+++ /dev/null
@@ -1,61 +0,0 @@
-//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 org.kde.qt.TQWidget;
-
-/**
-
- Auth icon for write permission display.
- @author Preston Brown <pbrown@kde.org>
-
- @short Auth icon for write permission display.
- @see KAuthIcon
-
-*/
-public class KWritePermsIcon extends KAuthIcon {
- protected KWritePermsIcon(Class dummy){super((Class) null);}
- public native TQMetaObject metaObject();
- public native String className();
- public KWritePermsIcon(String fileName, TQWidget parent, String name) {
- super((Class) null);
- newKWritePermsIcon(fileName,parent,name);
- }
- private native void newKWritePermsIcon(String fileName, TQWidget parent, String name);
- public KWritePermsIcon(String fileName, TQWidget parent) {
- super((Class) null);
- newKWritePermsIcon(fileName,parent);
- }
- private native void newKWritePermsIcon(String fileName, TQWidget parent);
- public KWritePermsIcon(String fileName) {
- super((Class) null);
- newKWritePermsIcon(fileName);
- }
- private native void newKWritePermsIcon(String fileName);
- /**
- @return whether or not the monitored file is writable.
-
- @short
- */
- public native boolean status();
- /**
- make the icon watch a new filename.
- @param fileName the new file to monitor / display status for.
- @short make the icon watch a new filename.
- */
- public native void setFileName(String fileName);
- /**
- return the filename of the currently watched file.
- @short return the filename of the currently watched file.
- */
- public native String fileName();
- public native void updateStatus();
- /** Deletes the wrapped C++ instance */
- protected native void finalize() throws InternalError;
- /** Delete the wrapped C++ instance ahead of finalize() */
- public native void dispose();
- /** Has the wrapped C++ instance been deleted? */
- public native boolean isDisposed();
-}