annotate lib/javax.xml.stream_1.0/readme.txt @ 0:db87c1b7eb6d

initial
author dwinter
date Wed, 03 Nov 2010 12:18:46 +0100
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
db87c1b7eb6d initial
dwinter
parents:
diff changeset
1 ------------------------------------------
db87c1b7eb6d initial
dwinter
parents:
diff changeset
2 Java Architecture for XML Streaming (StAX)
db87c1b7eb6d initial
dwinter
parents:
diff changeset
3 ------------------------------------------
db87c1b7eb6d initial
dwinter
parents:
diff changeset
4
db87c1b7eb6d initial
dwinter
parents:
diff changeset
5 "The Streaming API for XML (StAX) is the new generation of XML APIs in Java.
db87c1b7eb6d initial
dwinter
parents:
diff changeset
6 StAX is based on the so-called pull model in which an application queries
db87c1b7eb6d initial
dwinter
parents:
diff changeset
7 the parser for the next parsing event, but never surrenders control to the
db87c1b7eb6d initial
dwinter
parents:
diff changeset
8 parser during the process. Stated differently, StAX essentially turns the
db87c1b7eb6d initial
dwinter
parents:
diff changeset
9 SAX processing model upside down. Instead of the parser controlling the
db87c1b7eb6d initial
dwinter
parents:
diff changeset
10 application's flow, and the application reacting to parsing events, it is
db87c1b7eb6d initial
dwinter
parents:
diff changeset
11 the application that controls the flow by pulling events from the parser."
db87c1b7eb6d initial
dwinter
parents:
diff changeset
12
db87c1b7eb6d initial
dwinter
parents:
diff changeset
13 For more information:
db87c1b7eb6d initial
dwinter
parents:
diff changeset
14 https://sjsxp.dev.java.net/