diff options
Diffstat (limited to 'qtjava/javalib/org/kde/qt/QIODeviceInterface.java')
-rw-r--r-- | qtjava/javalib/org/kde/qt/QIODeviceInterface.java | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/qtjava/javalib/org/kde/qt/QIODeviceInterface.java b/qtjava/javalib/org/kde/qt/QIODeviceInterface.java new file mode 100644 index 00000000..1ac4a7fd --- /dev/null +++ b/qtjava/javalib/org/kde/qt/QIODeviceInterface.java @@ -0,0 +1,40 @@ +//Auto-generated by kalyptus. DO NOT EDIT. +package org.kde.qt; + + +public interface QIODeviceInterface { + 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); +} |