org.apache.camel.converter.jaxb
Class NonXmlFilterReader

java.lang.Object
  extended by java.io.Reader
      extended by java.io.FilterReader
          extended by org.apache.camel.converter.jaxb.NonXmlFilterReader
All Implemented Interfaces:
Closeable, Readable

public class NonXmlFilterReader
extends FilterReader

This FilterReader will filter out the non-XML characters, see NonXmlCharFilterer for details.


Field Summary
 
Fields inherited from class java.io.FilterReader
in
 
Fields inherited from class java.io.Reader
lock
 
Constructor Summary
protected NonXmlFilterReader(Reader in)
           
 
Method Summary
 int read(char[] cbuf, int off, int len)
          Reads characters into a portion of an array.
 
Methods inherited from class java.io.FilterReader
close, mark, markSupported, read, ready, reset, skip
 
Methods inherited from class java.io.Reader
read, read
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

NonXmlFilterReader

protected NonXmlFilterReader(Reader in)
Method Detail

read

public int read(char[] cbuf,
                int off,
                int len)
         throws IOException
Reads characters into a portion of an array.

Overrides:
read in class FilterReader
Throws:
IOException - If an I/O error occurs


Apache Camel