javanet.staxutils

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » XML » stax utils » javanet.staxutils 
javanet.staxutils
stax-utils Root Package Provides a set of utility classes that make it easy for developers to work with JSR-173: Streaming API for XML (StAX) and integrate it into their existing XML processing applications.
Java Source File NameTypeComment
BaseXMLEventReader.javaClass Abstract base class for XMLEventReader implementations.
BaseXMLEventWriter.javaClass Base class for XMLEventWriter implementations.
BaseXMLInputFactory.javaClass
BaseXMLOutputFactory.javaClass Base XMLOutputFactory that provides common event functionality.
BaseXMLStreamReader.javaClass Abstract base class for XMLStreamReader implementations.
ContentHandlerToXMLEventWriter.javaClass This is a simple utility class that adapts SAX events into StAX javax.xml.stream.XMLEventWriter events, bridging between the two parser technologies. This ContentHandler does not own the XMLEventWriter.
ContentHandlerToXMLStreamWriter.javaClass This is a simple utility class that adapts SAX events into StAX javax.xml.stream.XMLStreamWriter events, bridging between the two parser technologies. This ContentHandler does not own the XMLStreamWriter.
DummyLocator.javaClass A dummy locator that returns -1 and null from all methods to indicate that location info is not available.
EmptyNamespaceContext.javaClassExtendedNamespaceContext that contains no namespaces.
EntityDeclarationImpl.javaClass Implementation of javax.xml.stream.events.EntityDeclaration .
EventHelper.javaClass Partial base class implementation of javax.xml.stream.events.XMLEvent .
ExtendedLocation.javaInterface Extended the Location interface that exposes nested Location s.
ExtendedNamespaceContext.javaInterface Extended namespace context interface that allows the context tree to be navigated and to list all known prefixes.
IndentingXMLEventWriter.javaClass Wraps another XMLEventWriter and does the indentation.

XMLEventWriter API doesn't provide any portable way of doing pretty-printing.

IndentingXMLStreamWriter.javaClass A filter that indents an XML stream.
NamespaceContextAdapter.javaClassNamespaceContext that wraps another context.
OutputFactory.javaClass XMLOutputFactory implementation based on stax-utils code base.
SimpleLocation.javaClass Basic implementation of ExtendedLocation .
SimpleNamespaceContext.javaClass Simple NamespaceContext implementation backed by a HashMap.
StaticLocation.javaInterface Marker interface used to denote Location implementations whose state is not transient or dependent on external objects/events and will remain stable unless explicitly updated.
StaticNamespaceContext.javaInterface Marker interface used to denote NamespaceContext implementations whose state is not transient or dependent on external objects/events and will remain stable unless explicitly updated.
StAXContentHandler.javaClass Base class for SAX-to-STAX bridge classes that provides common functionality.
StAXEventContentHandler.javaClass SAX ContentHandler that writes events to a StAX XMLEventConsumer .
StAXReaderToContentHandler.javaInterface Common API's for adapting StAX events from javax.xml.stream.XMLStreamReader and javax.xml.stream.XMLEventReader into SAX events on the specified org.xml.sax.ContentHandler .
StAXResult.javaClass A JAXP javax.xml.transform.Result implementation that produces a result on the specified javax.xml.stream.XMLStreamWriter or javax.xml.stream.XMLEventWriter .

Please note that you may need to call flush() on the underlying XMLStreamWriter or XMLEventWriter after the transform is complete.

The fact that JAXBResult derives from SAXResult is an implementation detail.

StAXSource.javaClass A JAXP javax.xml.transform.Source implementation that wraps the specified javax.xml.stream.XMLStreamReader or javax.xml.stream.XMLEventReader for use by applications that expext a javax.xml.transform.Source .

The fact that StAXSource derives from SAXSource is an implementation detail.

StAXStreamContentHandler.javaClass SAX ContentHandler that writes events to a StAX XMLStreamWriter .
StreamWriterDelegate.javaClass Abstract class for writing filtered XML streams.
XMLEventConsumerDelegate.javaClass Writes all events to a wrapped XMLEventConsumer , and provides convenience methods for creating events written to the internal consumer.
XMLEventPipe.javaClass Provides the ability to pipe the XMLEvent s written to one XMLEventWriter to be read from a XMLEventReader .
XMLEventReaderToContentHandler.javaClass This is a simple utility class that adapts StAX events from an javax.xml.stream.XMLEventReader to SAX events on a org.xml.sax.ContentHandler , bridging between the two parser technologies.
XMLEventStreamWriter.javaClass An javax.xml.stream.XMLStreamWriter that writes events to a javax.xml.stream.XMLEventWriter .
XMLStreamEventReader.javaClassXMLEventReader implementation based on a XMLStreamReader and an XMLEventAllocator .
XMLStreamEventWriter.javaClassjavax.xml.stream.XMLEventWriter that writes events to a XMLStreamWriter .
XMLStreamReaderToContentHandler.javaClass This is a simple utility class that adapts StAX events from an javax.xml.stream.XMLStreamReader to SAX events on a org.xml.sax.ContentHandler , bridging between the two parser technologies.
XMLStreamUtils.javaClass Static utility methods useful when handling XML Streams.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.