summaryrefslogtreecommitdiffstats
path: root/qtjava/javalib/org/kde/qt/TQIODeviceInterface.java
diff options
context:
space:
mode:
Diffstat (limited to 'qtjava/javalib/org/kde/qt/TQIODeviceInterface.java')
-rw-r--r--qtjava/javalib/org/kde/qt/TQIODeviceInterface.java40
1 files changed, 0 insertions, 40 deletions
diff --git a/qtjava/javalib/org/kde/qt/TQIODeviceInterface.java b/qtjava/javalib/org/kde/qt/TQIODeviceInterface.java
deleted file mode 100644
index 8e9e2aa6..00000000
--- a/qtjava/javalib/org/kde/qt/TQIODeviceInterface.java
+++ /dev/null
@@ -1,40 +0,0 @@
-//Auto-generated by kalyptus. DO NOT EDIT.
-package org.kde.qt;
-
-
-public interface TQIODeviceInterface {
- int flags();
- int mode();
- int state();
- boolean isDirectAccess();
- boolean isSequentialAccess();
- boolean isCombinedAccess();
- boolean isBuffered();
- boolean isRaw();
- boolean isSynchronous();
- boolean isAsynchronous();
- boolean isTranslated();
- boolean isReadable();
- boolean isWritable();
- boolean isReadWrite();
- boolean isInactive();
- boolean isOpen();
- int status();
- void resetStatus();
- boolean open(int mode);
- void close();
- void flush();
- long size();
- long at();
- boolean at(long arg1);
- boolean atEnd();
- boolean reset();
- long readBlock(StringBuffer data, long maxlen);
- long writeBlock(String data, long len);
- long readLine(String data, long maxlen);
- long writeBlock(byte[] data);
- byte[] readAll();
- int getch();
- int putch(int arg1);
- int ungetch(int arg1);
-}