public class EscapeUnicode extends BaseParamFilterReader implements ChainableReader
<escapeunicode>Or:
<filterreader
        classname="org.apache.tools.ant.filters.EscapeUnicode"/>
  | Constructor and Description | 
|---|
| EscapeUnicode()Constructor for "dummy" instances. | 
| EscapeUnicode(java.io.Reader in)Creates a new filtered reader. | 
| Modifier and Type | Method and Description | 
|---|---|
| java.io.Reader | chain(java.io.Reader rdr)Creates a new EscapeUnicode using the passed in
 Reader for instantiation. | 
| int | read()Returns the next character in the filtered stream, converting non latin
 characters to unicode escapes. | 
getParameters, setParametersgetInitialized, getProject, read, readFully, readLine, setInitialized, setProject, skippublic EscapeUnicode()
BaseFilterReader()public EscapeUnicode(java.io.Reader in)
in - A Reader object providing the underlying stream.
           Must not be null.public final int read()
               throws java.io.IOException
read in class java.io.FilterReaderjava.io.IOException - if the underlying stream throws
 an IOException during readingpublic final java.io.Reader chain(java.io.Reader rdr)
chain in interface ChainableReaderrdr - A Reader object providing the underlying stream.
            Must not be null.