| Home >> All >> org >> apache >> jasper >> [ xmlparser Javadoc ] |
org.apache.jasper.xmlparser: Javadoc index of package org.apache.jasper.xmlparser.
Package Samples:
org.apache.jasper.xmlparser
Classes:
EncodingMap: EncodingMap is a convenience class which handles conversions between IANA encoding names and Java encoding names, and vice versa. The encoding names used in XML instance documents must be the IANA encoding names specified or one of the aliases for those names which IANA defines. Common Name Use this name in XML files Name Type Xerces converts to this Java Encoder Name 8 bit Unicode UTF-8 IANA UTF8 ISO Latin 1 ISO-8859-1 MIME ISO-8859-1 ISO Latin 2 ISO-8859-2 MIME ISO-8859-2 ISO Latin 3 ISO-8859-3 MIME ISO-8859-3 ISO Latin 4 ISO-8859-4 MIME ISO-8859-4 ISO Latin Cyrillic ISO-8859-5 MIME ISO-8859-5 ...
XMLString: This class is used as a structure to pass text contained in the underlying character buffer of the scanner. The offset and length fields allow the buffer to be re-used without creating new character arrays. Note: Methods that are passed an XMLString structure should consider the contents read-only and not make any modifications to the contents of the buffer. The method receiving this structure should also not modify the offset and length if this structure (or the values of this structure) are passed to another method. Note: Methods that are passed an XMLString structure are required to copy the ...
SymbolTable: This class is a symbol table implementation that guarantees that strings used as identifiers are unique references. Multiple calls to addSymbol will always return the same string reference. The symbol table performs the same task as String.intern() with the following differences: A new string object does not need to be created in order to retrieve a unique reference. Symbols can be added by using a series of characters in a character array. Users of the symbol table can provide their own symbol hashing implementation. For example, a simple string hashing algorithm may fail to produce a balanced ...
XMLStringBuffer: XMLString is a structure used to pass character arrays. However, XMLStringBuffer is a buffer in which characters can be appended and extends XMLString so that it can be passed to methods expecting an XMLString object. This is a safe operation because it is assumed that any callee will not modify the contents of the XMLString structure. The contents of the string are managed by the string buffer. As characters are appended, the string buffer will grow as needed. Note: Never set the ch , offset , and length fields directly. These fields are managed by the string buffer. In order to reset the buffer, ...
XMLChar: This class defines the basic XML character properties. The data in this class can be used to verify that a character is a valid XML character or if the character is a space, name start, or name character. A series of convenience methods are supplied to ease the burden of the developer. Because inlining the checks can improve per character performance, the tables of character properties are public. Using the character as an index into the CHARS array and applying the appropriate mask flag (e.g. MASK_VALID ), yields the same results as calling the convenience methods. There is one exception: check ...
TreeNode: Simplified implementation of a Node from a Document Object Model (DOM) parse of an XML document. This class is used to represent a DOM tree so that the XML parser's implementation of org.w3c.dom need not be visible to the remainder of Jasper. WARNING - Construction of a new tree, or modifications to an existing one, are not thread-safe and such accesses must be synchronized.
ParserUtils: XML parsing utilities for processing web application deployment descriptor and tag library descriptor files. FIXME - make these use a separate class loader for the parser to be used.
ASCIIReader: A simple ASCII byte reader. This is an optimized reader for reading byte streams that only contain 7-bit ASCII characters.
UCSReader: Reader for UCS-2 and UCS-4 encodings. (i.e., encodings from ISO-10646-UCS-(2|4)).
MyEntityResolver
MyErrorHandler
UTF8Reader
XMLEncodingDetector
| Home | Contact Us | Privacy Policy | Terms of Service |