Package Name | Comment |
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:
- There's a set of classes and interfaces that model JAXB-bound types.
You can think of this as a reflection library for JAXB.
- 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.
-
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.util | Typical 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.builtin | RELAX 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.host | implementation 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.
|