diff options
Diffstat (limited to 'qtjava/javalib/org/kde/qt/TQFile.java')
-rw-r--r-- | qtjava/javalib/org/kde/qt/TQFile.java | 51 |
1 files changed, 0 insertions, 51 deletions
diff --git a/qtjava/javalib/org/kde/qt/TQFile.java b/qtjava/javalib/org/kde/qt/TQFile.java deleted file mode 100644 index 0cf3e69d..00000000 --- a/qtjava/javalib/org/kde/qt/TQFile.java +++ /dev/null @@ -1,51 +0,0 @@ -//Auto-generated by kalyptus. DO NOT EDIT. -package org.kde.qt; - -import org.kde.qt.Qt; - -public class TQFile extends TQIODevice { - protected TQFile(Class dummy){super((Class) null);} - public TQFile() { - super((Class) null); - newTQFile(); - } - private native void newTQFile(); - public TQFile(String name) { - super((Class) null); - newTQFile(name); - } - private native void newTQFile(String name); - public native String name(); - public native void setName(String name); - public native boolean exists(); - public native boolean remove(); - public native boolean open(int arg1); - public native boolean open(int arg1, int arg2); - public native void close(); - public native void flush(); - public native long size(); - public native long at(); - public native boolean at(long arg1); - public native boolean atEnd(); - public native long readBlock(StringBuffer data, long len); - public native long writeBlock(String data, long len); - public native long writeBlock(byte[] data); - public native long readLine(String data, long maxlen); - public native long readLine(StringBuffer arg1, long maxlen); - public native int getch(); - public native int putch(int arg1); - public native int ungetch(int arg1); - public native int handle(); - public native String errorString(); - public static native String encodeName(String fileName); - public static native String decodeName(String localFileName); - public static native boolean exists(String fileName); - public static native boolean remove(String fileName); - protected native void setErrorString(String arg1); - /** 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(); -} |