xml

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 » 6.0 JDK Modules com.sun » xml 
OpenJDK: xml
License:The GNU General Public License (GPL)
URL:https://openjdk.dev.java.net
Description:
Package NameComment
com.sun.xml.internal.bind
com.sun.xml.internal.bind.annotation
com.sun.xml.internal.bind.api

Runtime API for the JAX-WS RI

. This API is designed for the use by the JAX-WS RI runtime.
com.sun.xml.internal.bind.api.impl
com.sun.xml.internal.bind.marshaller
com.sun.xml.internal.bind.unmarshaller
com.sun.xml.internal.bind.util
com.sun.xml.internal.bind.v2

The JAXB 2.0 runtime

.

Overview

This module provides code that implements JAXBContext . Roughly speaking the runtime works like this:

  1. There's a set of classes and interfaces that model JAXB-bound types. You can think of this as a reflection library for JAXB.
  2. There's a set of classes that constitute the unmarshaller and marshaller. Each class represents a small portion, and they are composed to perform the operations.
  3. JAXBContextImpl builds itself by reading the model and composing unmarshallers and marshallers.

Interesting Pieces inside Runtime

The followings are the interesting pieces inside the runtime.

com.sun.xml.internal.bind.v2.model model
This set of classes and interfaces models JAXB-bound types.
com.sun.xml.internal.bind.v2.runtime XML I/O
This set of classes implements the JAXB API and provides the XML I/O functionality.

The classes NOT in the com.sun.xml.internal.bind.v2 package (and its subpackages) are also used by old JAXB 1.0 clients.

Models

"Model" is the portion of the code that represents JAXB-bound types.

The following picture illustrates the relationship among major packages of the binding model.

The core model contracts are all interfaces, and they are parameterized so that they can be used with different reflection libraries.

com.sun.xml.internal.bind.v2.bytecode Code that deals with low level byte code manipulation.
com.sun.xml.internal.bind.v2.model.annotation Abstraction around reading annotations, to support internal/external annotations.
com.sun.xml.internal.bind.v2.model.core The in-memory model of the JAXB-bound beans.
com.sun.xml.internal.bind.v2.model.impl Implementation of the com.sun.xml.internal.bind.j2s.model package.
com.sun.xml.internal.bind.v2.model.nav Abstraction around the reflection library, to support various reflection models (such as java.lang.reflect and APT).
com.sun.xml.internal.bind.v2.model.runtime The specialization of com.sun.xml.internal.bind.v2.model.core for the runtime.

This package offers stronger types and additional methods available at the runtime to access objects according to the model.

com.sun.xml.internal.bind.v2.runtime Code that implements JAXBContext, Unmarshaller, and Marshaller.
com.sun.xml.internal.bind.v2.runtime.output Code that writes well-formed XML ( XmlOutput and its implementations}.
com.sun.xml.internal.bind.v2.runtime.property
com.sun.xml.internal.bind.v2.runtime.reflect Abstraction around accessing data of actual objects.
com.sun.xml.internal.bind.v2.runtime.reflect.opt Hosts optimized {@link com.sun.xml.internal.bind.v2.runtime.reflect.Accessor}, {@link com.sun.xml.internal.bind.v2.runtime.reflect.TransducedAccessor}, and {@link com.sun.xml.internal.bind.v2.runtime.Transducer}.

How it works

Most of the classes in this package are "templates." At run-time, A template class file is slightly modified to match the target Java Bean, then it will be loaded into the VM.

com.sun.xml.internal.bind.v2.runtime.unmarshaller
com.sun.xml.internal.bind.v2.schemagen Schema generator.
com.sun.xml.internal.bind.v2.schemagen.xmlschema XML Schema writer generated by TXW.
com.sun.xml.internal.bind.v2.util
com.sun.xml.internal.dtdparser

scan DTD stream and generates appropriate events.

com.sun.xml.internal.fastinfoset
com.sun.xml.internal.fastinfoset.algorithm
com.sun.xml.internal.fastinfoset.alphabet
com.sun.xml.internal.fastinfoset.dom
com.sun.xml.internal.fastinfoset.org.apache.xerces.util
com.sun.xml.internal.fastinfoset.sax
com.sun.xml.internal.fastinfoset.stax
com.sun.xml.internal.fastinfoset.stax.events
com.sun.xml.internal.fastinfoset.stax.factory
com.sun.xml.internal.fastinfoset.stax.util
com.sun.xml.internal.fastinfoset.tools
com.sun.xml.internal.fastinfoset.util
com.sun.xml.internal.fastinfoset.vocab
com.sun.xml.internal.messaging.saaj
com.sun.xml.internal.messaging.saaj.client.p2p
com.sun.xml.internal.messaging.saaj.packaging.mime
com.sun.xml.internal.messaging.saaj.packaging.mime.internet
com.sun.xml.internal.messaging.saaj.packaging.mime.util
com.sun.xml.internal.messaging.saaj.soap
com.sun.xml.internal.messaging.saaj.soap.dynamic
com.sun.xml.internal.messaging.saaj.soap.impl
com.sun.xml.internal.messaging.saaj.soap.name
com.sun.xml.internal.messaging.saaj.soap.ver1_1
com.sun.xml.internal.messaging.saaj.soap.ver1_2
com.sun.xml.internal.messaging.saaj.util
com.sun.xml.internal.messaging.saaj.util.transform
com.sun.xml.internal.org.jvnet.fastinfoset
com.sun.xml.internal.org.jvnet.fastinfoset.sax
com.sun.xml.internal.org.jvnet.fastinfoset.sax.helpers
com.sun.xml.internal.rngom.ast.builder
com.sun.xml.internal.rngom.ast.om
com.sun.xml.internal.rngom.ast.utilTypical implementations of the ast.builder/ast.om packages. Those classes are solely intended to make the AST implementation easier.
com.sun.xml.internal.rngom.binary Minimal binarized pattern object model (one example of ast.om implementation).
com.sun.xml.internal.rngom.binary.visitor
com.sun.xml.internal.rngom.digested Another RELAX NG AST implementation that optimizes away inclusions and some other syntax sugars, while still retaining all the annotations, location information, and etc.
com.sun.xml.internal.rngom.dt
com.sun.xml.internal.rngom.dt.builtinRELAX NG built-in datatype implementation.
com.sun.xml.internal.rngom.nc Default Name Class Object Model (one example of ast.om implementation).
com.sun.xml.internal.rngom.parse
com.sun.xml.internal.rngom.parse.compact
com.sun.xml.internal.rngom.parse.hostimplementation of the asm.builder package that uses two other builds simultaneously.
com.sun.xml.internal.rngom.parse.xml
com.sun.xml.internal.rngom.util
com.sun.xml.internal.rngom.xml.sax
com.sun.xml.internal.rngom.xml.util
com.sun.xml.internal.stream
com.sun.xml.internal.stream.dtd
com.sun.xml.internal.stream.dtd.nonvalidating
com.sun.xml.internal.stream.events
com.sun.xml.internal.stream.util
com.sun.xml.internal.stream.writers
com.sun.xml.internal.txw2

TXW runtime.

com.sun.xml.internal.txw2.annotation

Defines a set of annotations that can be used on TypedXmlWriter interfaces.

Package-level Annotation

{@link XmlNamespace} can be used on a package to designate the namespace URI for the whole package.

Interface Annotation

{@link XmlElement} can be used on TypedXmlWriter-derived interfaces to associate a tag name to that interface.

Method Annotations

{@link XmlElement}, {@link XmlAttribute}, or {@link XmlValue} can be used on a method declared on a TypedXmLWriter-derived interface. Those annotations are mutually-exclusive. See their javadoc for details. If none of the above three annotations are specified, {@link XmlElement} is assumed.

com.sun.xml.internal.txw2.output

Defines XmlSerializer and its built-in implementations.

com.sun.xml.internal.ws

This document describes the architecture of JAX-WS 2.0 runtime.

com.sun.xml.internal.ws.binding
com.sun.xml.internal.ws.binding.http
com.sun.xml.internal.ws.binding.soap
com.sun.xml.internal.ws.client

JAX-WS 2.0 Client Runtime

This document describes the architecture of client side JAX-WS 2.0 runtime.

com.sun.xml.internal.ws.client.dispatch
com.sun.xml.internal.ws.client.dispatch.impl
com.sun.xml.internal.ws.client.dispatch.impl.encoding
com.sun.xml.internal.ws.client.dispatch.impl.protocol
com.sun.xml.internal.ws.developer
com.sun.xml.internal.ws.encoding
com.sun.xml.internal.ws.encoding.internal
com.sun.xml.internal.ws.encoding.jaxb
com.sun.xml.internal.ws.encoding.simpletype
com.sun.xml.internal.ws.encoding.soap
com.sun.xml.internal.ws.encoding.soap.client
com.sun.xml.internal.ws.encoding.soap.internal
com.sun.xml.internal.ws.encoding.soap.message
com.sun.xml.internal.ws.encoding.soap.server
com.sun.xml.internal.ws.encoding.soap.streaming
com.sun.xml.internal.ws.encoding.xml
com.sun.xml.internal.ws.handler

JAX-WS 2.0 Handler Runtime

This document describes the architecture of the handler code in the JAX-WS 2.0 runtime.

Handlers may be specified by the deployment descriptor on the server side, or by a wsdl customization or Java annotation.

com.sun.xml.internal.ws.model
com.sun.xml.internal.ws.model.soap
com.sun.xml.internal.ws.modeler
com.sun.xml.internal.ws.pept
com.sun.xml.internal.ws.pept.encoding
com.sun.xml.internal.ws.pept.ept
com.sun.xml.internal.ws.pept.presentation
com.sun.xml.internal.ws.pept.protocol
com.sun.xml.internal.ws.protocol.soap.client
com.sun.xml.internal.ws.protocol.soap.server
com.sun.xml.internal.ws.protocol.xml
com.sun.xml.internal.ws.protocol.xml.client
com.sun.xml.internal.ws.protocol.xml.server
com.sun.xml.internal.ws.server

JAX-WS 2.0 Server Runtime

This document describes the architecture of server side JAX-WS 2.0 runtime.

com.sun.xml.internal.ws.server.provider
com.sun.xml.internal.ws.spi
com.sun.xml.internal.ws.spi.runtime

This document describes the SPI for the JAX-WS 2.0 runtime.

com.sun.xml.internal.ws.streaming
com.sun.xml.internal.ws.transport
com.sun.xml.internal.ws.transport.http.client
com.sun.xml.internal.ws.transport.http.server
com.sun.xml.internal.ws.transport.local
com.sun.xml.internal.ws.transport.local.client
com.sun.xml.internal.ws.transport.local.server
com.sun.xml.internal.ws.util
com.sun.xml.internal.ws.util.exception
com.sun.xml.internal.ws.util.localization
com.sun.xml.internal.ws.util.xml
com.sun.xml.internal.ws.wsdl
com.sun.xml.internal.ws.wsdl.parser
com.sun.xml.internal.ws.wsdl.writer
com.sun.xml.internal.ws.wsdl.writer.document
com.sun.xml.internal.ws.wsdl.writer.document.http
com.sun.xml.internal.ws.wsdl.writer.document.soap
com.sun.xml.internal.ws.wsdl.writer.document.soap12
com.sun.xml.internal.ws.wsdl.writer.document.xsd
com.sun.xml.internal.xsom Interfaces that the client should use to access schema information.
com.sun.xml.internal.xsom.impl Implementation of the com.sun.xml.xsom package.
com.sun.xml.internal.xsom.impl.parser Parser that reads XML Schema documents and builds an XSSchemaSet object.
com.sun.xml.internal.xsom.impl.parser.state
com.sun.xml.internal.xsom.impl.util
com.sun.xml.internal.xsom.parser Classes to parse XML Schema documents into objects of com.sun.xml.xsom package.
com.sun.xml.internal.xsom.util
com.sun.xml.internal.xsom.visitor Visitor pattern support for the com.sun.xml.xsom interfaces.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.