Source Code Cross Referenced for package-info.java in  » 6.0-JDK-Modules-com.sun » xml » com » sun » xml » internal » bind » v2 » Java Source Code / Java DocumentationJava Source Code and Java Documentation

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 » com.sun.xml.internal.bind.v2 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


        /*
         * Copyright 2006 Sun Microsystems, Inc.  All Rights Reserved.
         * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
         *
         * This code is free software; you can redistribute it and/or modify it
         * under the terms of the GNU General Public License version 2 only, as
         * published by the Free Software Foundation.  Sun designates this
         * particular file as subject to the "Classpath" exception as provided
         * by Sun in the LICENSE file that accompanied this code.
         *
         * This code is distributed in the hope that it will be useful, but WITHOUT
         * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
         * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
         * version 2 for more details (a copy is included in the LICENSE file that
         * accompanied this code).
         *
         * You should have received a copy of the GNU General Public License version
         * 2 along with this work; if not, write to the Free Software Foundation,
         * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
         *
         * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
         * CA 95054 USA or visit www.sun.com if you need additional information or
         * have any questions.
         */

        /**
         * <h1>The JAXB 2.0 runtime</h1>.
         *
         * <h1>Overview</h1>
         * <p>
         * This module provides code that implements {@link JAXBContext}.
         * Roughly speaking the runtime works like this:
         *
         * <ol>
         *  <li>There's a set of classes and interfaces that model JAXB-bound types.
         *      You can think of this as a reflection library for JAXB.
         *  <li>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.
         *  <li>{@link JAXBContextImpl} builds itself by reading the model and
         *      composing unmarshallers and marshallers.
         * </ol>
         *
         * <h1>Interesting Pieces inside Runtime</h1>
         * <p>
         * The followings are the interesting pieces inside the runtime.
         *
         * <dl>
         *  <dt>{@link com.sun.xml.internal.bind.v2.model model}
         *  <dd>
         *    This set of classes and interfaces models JAXB-bound types.
         *
         *  <dt>{@link com.sun.xml.internal.bind.v2.runtime XML I/O}
         *  <dd>
         *    This set of classes implements the JAXB API and provides the XML I/O functionality.
         * </dl>
         *
         * <p>
         * The classes <b>NOT</b> in the {@link com.sun.xml.internal.bind.v2} package (and its subpackages)
         * are also used by old JAXB 1.0 clients.
         *
         * <h1>Models</h1>
         * <p>
         * "Model" is the portion of the code that represents JAXB-bound types.
         *
         * <p>
         * The following picture illustrates the relationship among major
         * packages of the binding model.
         *
         * <div>
         *   <img src="doc-files/packages.png"/>
         * </div>
         *
         * <p>
         * The core model contracts are all interfaces, and they are parameterized
         * so that they can be used
         * with different reflection libraries. This is necessary, as the model
         * is used:
         * <ol>
         *  <li> at runtime to process loaded classes,
         *  <li> at tool-time to process source files / class files, and
         *  <li> at schema compile time to generate source code.
         * </ol>
         * They all use different reflection libraries.
         *
         * <p>
         * This portion is used by all
         * three running mode of JAXB.
         * <a href="model/impl/package-summary.html">The corresponding base-level implementaion</a>
         * is also parameterized.
         *
         * <p>
         * The runtime model contract and implementation are used only at the run-time.
         * These packages fix the parameterization to the Java reflection,
         * and also exposes additional functionalities to actually do the
         * unmarshalling/marshalling. These classes have "Runtime" prefix.
         *
         * <p>
         * Finally XJC has its own implementation of the contract in
         * its own package. This package also fixes the parameterization
         * to its own reflection library.
         *
         * <p>
         * When you work on the code, it is often helpful to know the layer you are in.
         *
         *
         * <p>
         * The binding model design roughly looks like the following.
         * For more details, see the javadoc of each component.
         *
         * <div>
         *  <img src="doc-files/j2s_architecture.gif"/>
         * </div>
         *
         * <b><i>TODO: link to classes from above pictures</i></b>
         *
         *
         * <h3>Evolution Rules</h3>
         * None of the class in this package or below should be directly
         * referenced by the generated code. Hence they can be changed freely
         * from versions to versions.
         *
         *
         *
         *
         * <h1>Performance Characteristics</h1>
         * <p>
         * Model construction happens inside {@link JAXBContext#newInstance(Class[])}.
         * It's desirable for this step to be fast and consume less memory,
         * but it's not too performance sensitive.
         *
         * <p>
         * Code that implements the unmarshaller and the marshaller OTOH
         * needs to be very carefully written to achieve maximum sustaining
         * performance.
         *
         *
         *
         *
         * <h1>Bootstrap Sequence</h1>
         * <p>
         * The following picture illustrates how the {@link JAXBContext#newInstance(Class[])} method
         * triggers activities.
         *
         * {@SequenceDiagram
         boxwid=1.2;

         pobject(U,"user");
         object(A,"JAXB API");
         object(CF,"ContextFactory");
         pobject(JC);
         step();

         message(U,A,"JAXBContext.newInstance()");
         active(A);
         message(A,A,"locate JAXB RI 2.0");
         active(A);
         step();
         inactive(A);

         message(A,CF,"createContext");
         active(CF);

         create_message(CF,JC,"c:JAXBContextImpl");
         active(JC);

         message(JC,JC,"build runtime model");
         message(JC,JC,"build JaxBeanInfos");
         inactive(JC);

         rmessage(A,U,"return c");
         inactive(CF);
         inactive(A);

         complete(JC);
         complete(CF);
         complete(A);
         * }
         *
         * @ArchitectureDocument
         */package com.sun.xml.internal.bind.v2;

        import javax.xml.bind.JAXBContext;

        import com.sun.xml.internal.bind.v2.runtime.JAXBContextImpl;

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.