org.kde.qt
Interface QIODeviceInterface

All Known Implementing Classes:
QBuffer, QFile, QIODevice, QSocket, QSocketDevice

public interface QIODeviceInterface


Method Summary
 long at()
           
 boolean at(long arg1)
           
 boolean atEnd()
           
 void close()
           
 int flags()
           
 void flush()
           
 int getch()
           
 boolean isAsynchronous()
           
 boolean isBuffered()
           
 boolean isCombinedAccess()
           
 boolean isDirectAccess()
           
 boolean isInactive()
           
 boolean isOpen()
           
 boolean isRaw()
           
 boolean isReadable()
           
 boolean isReadWrite()
           
 boolean isSequentialAccess()
           
 boolean isSynchronous()
           
 boolean isTranslated()
           
 boolean isWritable()
           
 int mode()
           
 boolean open(int mode)
           
 int putch(int arg1)
           
 byte[] readAll()
           
 long readBlock(java.lang.StringBuffer data, long maxlen)
           
 long readLine(java.lang.String data, long maxlen)
           
 boolean reset()
           
 void resetStatus()
           
 long size()
           
 int state()
           
 int status()
           
 int ungetch(int arg1)
           
 long writeBlock(byte[] data)
           
 long writeBlock(java.lang.String data, long len)
           
 

Method Detail

flags

int flags()

mode

int mode()

state

int state()

isDirectAccess

boolean isDirectAccess()

isSequentialAccess

boolean isSequentialAccess()

isCombinedAccess

boolean isCombinedAccess()

isBuffered

boolean isBuffered()

isRaw

boolean isRaw()

isSynchronous

boolean isSynchronous()

isAsynchronous

boolean isAsynchronous()

isTranslated

boolean isTranslated()

isReadable

boolean isReadable()

isWritable

boolean isWritable()

isReadWrite

boolean isReadWrite()

isInactive

boolean isInactive()

isOpen

boolean isOpen()

status

int status()

resetStatus

void resetStatus()

open

boolean open(int mode)

close

void close()

flush

void flush()

size

long size()

at

long at()

at

boolean at(long arg1)

atEnd

boolean atEnd()

reset

boolean reset()

readBlock

long readBlock(java.lang.StringBuffer data,
               long maxlen)

writeBlock

long writeBlock(java.lang.String data,
                long len)

readLine

long readLine(java.lang.String data,
              long maxlen)

writeBlock

long writeBlock(byte[] data)

readAll

byte[] readAll()

getch

int getch()

putch

int putch(int arg1)

ungetch

int ungetch(int arg1)