nu.validator.htmlparser.rewindable
Class RewindableInputStream

java.lang.Object
  extended by java.io.InputStream
      extended by nu.validator.htmlparser.rewindable.RewindableInputStream
All Implemented Interfaces:
java.io.Closeable, Rewindable

public class RewindableInputStream
extends java.io.InputStream
implements Rewindable


Constructor Summary
RewindableInputStream(java.io.InputStream in)
           
 
Method Summary
 int available()
           
 boolean canRewind()
           
 void close()
           
 int read()
           
 int read(byte[] b, int off, int len)
           
 void rewind()
           
 void willNotRewind()
           
 
Methods inherited from class java.io.InputStream
mark, markSupported, read, reset, skip
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

RewindableInputStream

public RewindableInputStream(java.io.InputStream in)
Method Detail

close

public void close()
           throws java.io.IOException
Specified by:
close in interface java.io.Closeable
Overrides:
close in class java.io.InputStream
Throws:
java.io.IOException

rewind

public void rewind()
Specified by:
rewind in interface Rewindable

canRewind

public boolean canRewind()
Specified by:
canRewind in interface Rewindable

willNotRewind

public void willNotRewind()
Specified by:
willNotRewind in interface Rewindable

read

public int read()
         throws java.io.IOException
Specified by:
read in class java.io.InputStream
Throws:
java.io.IOException

read

public int read(byte[] b,
                int off,
                int len)
         throws java.io.IOException
Overrides:
read in class java.io.InputStream
Throws:
java.io.IOException

available

public int available()
              throws java.io.IOException
Overrides:
available in class java.io.InputStream
Throws:
java.io.IOException