< prev index next >

jaxp/src/java.xml/share/classes/module-info.java

Print this page




  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 /**
  27  * Defines the Java API for XML Processing (JAXP), the Streaming API for XML (StAX),
  28  * the Simple API for XML (SAX), and the W3C Document Object Model (DOM) API.
  29  *











  30  * @moduleGraph
  31  * @since 9
  32  */
  33 module java.xml {
  34     exports javax.xml;
  35     exports javax.xml.catalog;
  36     exports javax.xml.datatype;
  37     exports javax.xml.namespace;
  38     exports javax.xml.parsers;
  39     exports javax.xml.stream;
  40     exports javax.xml.stream.events;
  41     exports javax.xml.stream.util;
  42     exports javax.xml.transform;
  43     exports javax.xml.transform.dom;
  44     exports javax.xml.transform.sax;
  45     exports javax.xml.transform.stax;
  46     exports javax.xml.transform.stream;
  47     exports javax.xml.validation;
  48     exports javax.xml.xpath;
  49     exports org.w3c.dom;




  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 /**
  27  * Defines the Java API for XML Processing (JAXP), the Streaming API for XML (StAX),
  28  * the Simple API for XML (SAX), and the W3C Document Object Model (DOM) API.
  29  *
  30  * @uses javax.xml.datatype.DatatypeFactory
  31  * @uses javax.xml.parsers.DocumentBuilderFactory
  32  * @uses javax.xml.parsers.SAXParserFactory
  33  * @uses javax.xml.stream.XMLEventFactory
  34  * @uses javax.xml.stream.XMLInputFactory
  35  * @uses javax.xml.stream.XMLOutputFactory
  36  * @uses javax.xml.transform.TransformerFactory
  37  * @uses javax.xml.validation.SchemaFactory
  38  * @uses javax.xml.xpath.XPathFactory
  39  * @uses org.xml.sax.XMLReader
  40  *
  41  * @moduleGraph
  42  * @since 9
  43  */
  44 module java.xml {
  45     exports javax.xml;
  46     exports javax.xml.catalog;
  47     exports javax.xml.datatype;
  48     exports javax.xml.namespace;
  49     exports javax.xml.parsers;
  50     exports javax.xml.stream;
  51     exports javax.xml.stream.events;
  52     exports javax.xml.stream.util;
  53     exports javax.xml.transform;
  54     exports javax.xml.transform.dom;
  55     exports javax.xml.transform.sax;
  56     exports javax.xml.transform.stax;
  57     exports javax.xml.transform.stream;
  58     exports javax.xml.validation;
  59     exports javax.xml.xpath;
  60     exports org.w3c.dom;


< prev index next >