com.sun.ukit.jaxp |
Provides non-validating XML parser. The implementation complies with
JSR 172 JAXP requirements.
|
Java Source File Name | Type | Comment |
Attrs.java | Class | SAX Attributes interface implementation. |
Input.java | Class | A parsed entity input state.
This class represents a parsed entity input state. |
Pair.java | Class | A name with value pair. |
Parser.java | Class | XML non-validating parser.
This non-validating parser conforms to Extensible Markup Language (XML) 1.0 and "Namespaces in XML" specifications. |
ParserFactory.java | Class | Implementation of JAXP SAXParserFactory. |
ReaderUTF16.java | Class | UTF-16 encoded stream reader. |
ReaderUTF8.java | Class | UTF-8 transformed UCS-2 character stream reader.
This reader converts UTF-8 transformed UCS-2 characters to Java characters.
The UCS-2 subset of UTF-8 transformation is described in RFC-2279 #2
"UTF-8 definition":
0000 0000-0000 007F 0xxxxxxx
0000 0080-0000 07FF 110xxxxx 10xxxxxx
0000 0800-0000 FFFF 1110xxxx 10xxxxxx 10xxxxxx
This reader will return incorrect last character on broken UTF-8 stream. |