summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/KShred.java
diff options
context:
space:
mode:
Diffstat (limited to 'kdejava/koala/org/kde/koala/KShred.java')
-rw-r--r--kdejava/koala/org/kde/koala/KShred.java95
1 files changed, 0 insertions, 95 deletions
diff --git a/kdejava/koala/org/kde/koala/KShred.java b/kdejava/koala/org/kde/koala/KShred.java
deleted file mode 100644
index 3755b1ee..00000000
--- a/kdejava/koala/org/kde/koala/KShred.java
+++ /dev/null
@@ -1,95 +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.TQObject;
-
-/**
-
- Erase a file in a way that makes recovery impossible -- well, no guarentee
- of that, but at least as difficult as reasonably possible.
- For this, KShred write several times over the
- existing file, using different patterns, before deleting it.
- See {@link KShredSignals} for signals emitted by KShred
- @author David Faure <faure@kde.org> (integration into KDE and progress signal)
-
- @short
-
-*/
-public class KShred extends TQObject {
- protected KShred(Class dummy){super((Class) null);}
- public native TQMetaObject metaObject();
- public native String className();
- /**
- Initialize the class using the name of the file to 'shred'.
- @param fileName fully qualified name of the file to shred.
- @short Initialize the class using the name of the file to 'shred'.
- */
- public KShred(String fileName) {
- super((Class) null);
- newKShred(fileName);
- }
- private native void newKShred(String fileName);
- /**
- Writes all 1's over the entire file and flushes the file buffers.
- @return true on success, false on error (invalid filename or write error)
-
- @short Writes all 1's over the entire file and flushes the file buffers.
- */
- public native boolean fill1s();
- /**
- Writes all 0's over the entire file and flushes the file buffers.
- @return true on success, false on error (invalid filename or write error)
-
- @short Writes all 0's over the entire file and flushes the file buffers.
- */
- public native boolean fill0s();
- /**
- Writes the specified byte over the entire file and flushes the file buffers.
- @param byte the value to write over every byte of the file
- @return true on success, false on error (invalid filename or write error)
-
- @short Writes the specified byte over the entire file and flushes the file buffers.
- */
- public native boolean fillbyte(int arg1);
- /**
- Writes random bites over the entire file and flushes the file buffers.
- @return true on success, false on error (invalid filename or write error)
-
- @short Writes random bites over the entire file and flushes the file buffers.
- */
- public native boolean fillrandom();
- /**
- Writes the specified byte array over the entire file and flushes the file buffers.
- @param pattern the value to write over the entire file
- @param size the length of the 'pattern' byte array
- @return true on success, false on error (invalid filename or write error)
-
- @short Writes the specified byte array over the entire file and flushes the file buffers.
- */
- public native boolean fillpattern(short pattern, int size);
- /**
- Shreds a file by writing a series of values over it (uses
- #fill0s, then fill1s, then fillrandom, then
- fillbyte with 0101..., then fillbyte with 1010....
- @return true on success, false on error (invalid filename or write error)
-
- @short Shreds a file by writing a series of values over it (uses #fill0s, then fill1s, then fillrandom, then fillbyte with 0101.
- */
- public native boolean shred();
- /**
- The simplest method to shred a file.
- No need to create an instance of the class.
- @param fileName fully qualified name of the file to shred.
- @short The simplest method to shred a file.
- */
- public static native boolean shred(String fileName);
- /** 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();
-}