| java.lang.Object com.caucho.xsl.XslParser
XslParser | class XslParser (Code) | | Parses a 'StyleScript' file. StyleScript is compatible with XSLT, adding
some syntactical sugar:
path << ... >> is shorthand for
<xsl:template match='path'> ... </xsl:template>
<{...}> is shorthand for
<xsl:value-of select='...'/>
|
Method Summary | |
Document | parse(ReadStream is) Parse an XSLT-lite document from the input stream, returning a Document. | public int | read() Reads a character from the stream, keeping track of newlines. | void | unread(int ch) |
strictXsl | public boolean strictXsl(Code) | | |
read | public int read() throws IOException(Code) | | Reads a character from the stream, keeping track of newlines.
|
unread | void unread(int ch)(Code) | | |
|
|