Class XMLReader
- java.lang.Object
-
- java.io.Reader
-
- org.tmatesoft.svn.core.internal.io.dav.http.XMLReader
-
- All Implemented Interfaces:
java.io.Closeable
,java.lang.AutoCloseable
,java.lang.Readable
public class XMLReader extends java.io.Reader
- Version:
- 1.3
-
-
Field Summary
Fields Modifier and Type Field Description static char
COLON_REPLACEMENT
private int
myColonCount
private boolean
myIsClosed
private boolean
myIsEscaping
private java.io.Reader
mySource
-
Constructor Summary
Constructors Constructor Description XMLReader(java.io.InputStream is)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
close()
boolean
isClosed()
int
read(char[] b, int off, int len)
-
-
-
Field Detail
-
COLON_REPLACEMENT
public static final char COLON_REPLACEMENT
- See Also:
- Constant Field Values
-
mySource
private java.io.Reader mySource
-
myIsEscaping
private boolean myIsEscaping
-
myColonCount
private int myColonCount
-
myIsClosed
private boolean myIsClosed
-
-
Method Detail
-
read
public int read(char[] b, int off, int len) throws java.io.IOException
- Specified by:
read
in classjava.io.Reader
- Throws:
java.io.IOException
-
isClosed
public boolean isClosed()
-
close
public void close() throws java.io.IOException
- Specified by:
close
in interfacejava.lang.AutoCloseable
- Specified by:
close
in interfacejava.io.Closeable
- Specified by:
close
in classjava.io.Reader
- Throws:
java.io.IOException
-
-