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, 40 insertions, 0 deletions
diff --git a/qtjava/javalib/org/kde/qt/TQIODeviceInterface.java b/qtjava/javalib/org/kde/qt/TQIODeviceInterface.java
new file mode 100644
index 00000000..8e9e2aa6
--- /dev/null
+++ b/qtjava/javalib/org/kde/qt/TQIODeviceInterface.java
@@ -0,0 +1,40 @@
+//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);
+}