From 636f509299122d02087c6fd62e1e4a46dbd22026 Mon Sep 17 00:00:00 2001 From: Darrell Anderson Date: Wed, 8 Jan 2014 20:06:00 +0100 Subject: Rename many classes to avoid conflicts with KDE --- .../org/trinitydesktop/qt/TQIODeviceInterface.java | 40 ++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 qtjava/javalib/org/trinitydesktop/qt/TQIODeviceInterface.java (limited to 'qtjava/javalib/org/trinitydesktop/qt/TQIODeviceInterface.java') diff --git a/qtjava/javalib/org/trinitydesktop/qt/TQIODeviceInterface.java b/qtjava/javalib/org/trinitydesktop/qt/TQIODeviceInterface.java new file mode 100644 index 00000000..77771ff3 --- /dev/null +++ b/qtjava/javalib/org/trinitydesktop/qt/TQIODeviceInterface.java @@ -0,0 +1,40 @@ +//Auto-generated by kalyptus. DO NOT EDIT. +package org.trinitydesktop.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); +} -- cgit v1.2.1