org.xwt.mips
Class VM.FileDescriptor

java.lang.Object
  extended byorg.xwt.mips.VM.FileDescriptor
Direct Known Subclasses:
VM.InputStreamFD, VM.OutputStreamFD, VM.RegularFileDescriptor
Enclosing class:
VM

public abstract static class VM.FileDescriptor
extends java.lang.Object


Method Summary
 org.xwt.mips.VM.FileInfo fileInfo()
           
 boolean isatty()
           
 int read(byte[] a, int off, int length)
           
 boolean readable()
           
 int seek(int n, int whence)
           
 boolean writable()
           
 int write(byte[] a, int off, int length)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

readable

public boolean readable()

writable

public boolean writable()

fileInfo

public org.xwt.mips.VM.FileInfo fileInfo()

read

public int read(byte[] a,
                int off,
                int length)
         throws java.io.IOException
Throws:
java.io.IOException

write

public int write(byte[] a,
                 int off,
                 int length)
          throws java.io.IOException
Throws:
java.io.IOException

seek

public int seek(int n,
                int whence)
         throws java.io.IOException
Throws:
java.io.IOException

isatty

public boolean isatty()