Introduction to Library Functions jaxb(3) NAME jaxb - Java Architecture for XML Binding is a standard extension to the Java platform. SYNOPSIS Add relevant jaxb jar to the classpath DESCRIPTION JAXB is an acronym derived from Java Architecture for XML Binding. It constitutes a convenient framework for process- ing XML documents, providing significant benefits as com- pared to previously available methods such as the one fol- lowing the Document Object Model (DOM).In the DOM approach, the parser creates a tree of objects that represents the content and organization of data in the document. The appli- cation can then navigate through the tree in memory to access the data it needs. DOM data, however, is contained in objects of a single type, linked according to the XML document's structure, with individual node objects contain- ing an element, an attribute, a CDATA section, etc. Values are invariably provided as strings.JAXB provides a con- venient way to process XML content using Java objects by binding its XML schema to Java representation. For more details about Java Architecture for XML Binding(JAXB), please see https://jaxb.dev.java.net web page. FILES By default, all jaxb jars are installed into /usr/share/lib/java directory. For more details about jars installed by jaxb, please see https://jaxb.dev.java.net/nonav/2.1.10/docs/ReleaseNotes.html The XML binding compiler can be launched using the jaxb-xjc tool in the bin directory /usr/bin The schema generator can be launched using the jaxb-schemagen tool in the bin directory /usr/bin For more details on using the tools, please see https://jaxb.dev.java.net/nonav/2.1.10/docs HTML-based documentation is located in jaxb's doc directory, /usr/share/doc/jaxb. ENVIRONMENT JAVA_HOME variable must point to the directory where Java is installed. SunOS 5.10 Last change: 1 Introduction to Library Functions jaxb(3) ATTRIBUTES See attributes(5) for descriptions of the following attri- butes: _______________________________________ | ATTRIBUTE TYPE | ATTRIBUTE VALUE| |____________________|_________________| | Availability | SUNWjaxb | |____________________|_________________| | Interface Stability| Uncommitted | |____________________|_________________| NOTES Source for jaxb is available on http://opensolaris.org. SunOS 5.10 Last change: 2