< prev index next >

src/java.xml/share/classes/javax/xml/transform/package-info.java

Print this page

        

@@ -1,7 +1,7 @@
 /*
- * Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2015, 2018, Oracle and/or its affiliates. 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.  Oracle designates this

@@ -36,19 +36,19 @@
  * of the interfaces found at the root level. These interfaces are found in
  * {@link javax.xml.transform.sax}, {@link javax.xml.transform.dom},
  * {@link javax.xml.transform.stax}, and {@link javax.xml.transform.stream}.
  *
  *
- * <h3>Creating Objects</h3>
+ * <h2>Creating Objects</h2>
  *
  * <p>
  * The API allows a concrete {@link javax.xml.transform.TransformerFactory}
  * object to be created from the static function
  * {@link javax.xml.transform.TransformerFactory#newInstance}.
  *
  *
- * <h3>Specification of Inputs and Outputs</h3>
+ * <h2>Specification of Inputs and Outputs</h2>
  *
  * <p>
  * This API defines two interface objects called {@link javax.xml.transform.Source}
  * and {@link javax.xml.transform.Result}. In order to pass Source and Result
  * objects to the interfaces, concrete classes must be used. The following concrete

@@ -75,13 +75,11 @@
  * }
  * </code>
  * </pre>
  *
  *
- * <h3>
- * <a id="qname-delimiter">Qualified Name Representation</a>
- * </h3>
+ * <h2><a id="qname-delimiter">Qualified Name Representation</a></h2>
  *
  * <p>
  * <a href="http://www.w3.org/TR/REC-xml-names">Namespaces</a> present something
  * of a problem area when dealing with XML objects. Qualified Names appear in XML
  * markup as prefixed names. But the prefixes themselves do not hold identity.

@@ -110,11 +108,11 @@
  * &lt;xyz:foo xmlns:xyz="http://xyz.foo.com/yada/baz.html"/&gt;, then the
  * Qualified Name would be "{http://xyz.foo.com/yada/baz.html}foo". Note that the
  * prefix is lost.
  *
  *
- * <h3>Result Tree Serialization</h3>
+ * <h2>Result Tree Serialization</h2>
  *
  * <p>
  * Serialization of the result tree to a stream can be controlled with the
  * {@link javax.xml.transform.Transformer#setOutputProperties} and the
  * {@link javax.xml.transform.Transformer#setOutputProperty} methods.

@@ -139,11 +137,11 @@
  * {@link javax.xml.transform.TransformerFactory#newTransformer()} method
  * with no arguments. This method creates a Transformer that effectively copies
  * the source to the result. This method may be used to create a DOM from SAX
  * events or to create an XML or HTML stream from a DOM or SAX events.
  *
- * <h3>Exceptions and Error Reporting</h3>
+ * <h2>Exceptions and Error Reporting</h2>
  *
  * <p>
  * The transformation API throw three types of specialized exceptions. A
  * {@link javax.xml.transform.TransformerFactoryConfigurationError} is parallel to
  * the {@link javax.xml.parsers.FactoryConfigurationError}, and is thrown

@@ -190,11 +188,11 @@
  * Applications are <em>strongly</em> encouraged to register and use
  * <code>ErrorListener</code>s that insure proper behavior for warnings and
  * errors.
  *
  *
- * <h3>Resolution of URIs within a transformation</h3>
+ * <h2>Resolution of URIs within a transformation</h2>
  *
  * <p>
  * The API provides a way for URIs referenced from within the stylesheet
  * instructions or within the transformation to be resolved by the calling
  * application. This can be done by creating a class that implements the
< prev index next >