mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-16 17:14:41 +02:00
84 lines
3.3 KiB
Java
84 lines
3.3 KiB
Java
/*
|
|
* Copyright (c) 2014, 2017, 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
|
|
* particular file as subject to the "Classpath" exception as provided
|
|
* by Oracle 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 Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
|
* or visit www.oracle.com if you need additional information or have any
|
|
* questions.
|
|
*/
|
|
|
|
/**
|
|
* Defines the Java API for XML Processing (JAXP), the Streaming API for XML (StAX),
|
|
* the Simple API for XML (SAX), and the W3C Document Object Model (DOM) API.
|
|
*
|
|
* @since 9
|
|
*/
|
|
module java.xml {
|
|
exports javax.xml;
|
|
exports javax.xml.catalog;
|
|
exports javax.xml.datatype;
|
|
exports javax.xml.namespace;
|
|
exports javax.xml.parsers;
|
|
exports javax.xml.stream;
|
|
exports javax.xml.stream.events;
|
|
exports javax.xml.stream.util;
|
|
exports javax.xml.transform;
|
|
exports javax.xml.transform.dom;
|
|
exports javax.xml.transform.sax;
|
|
exports javax.xml.transform.stax;
|
|
exports javax.xml.transform.stream;
|
|
exports javax.xml.validation;
|
|
exports javax.xml.xpath;
|
|
exports org.w3c.dom;
|
|
exports org.w3c.dom.bootstrap;
|
|
exports org.w3c.dom.events;
|
|
exports org.w3c.dom.ls;
|
|
exports org.w3c.dom.ranges;
|
|
exports org.w3c.dom.traversal;
|
|
exports org.w3c.dom.views;
|
|
exports org.xml.sax;
|
|
exports org.xml.sax.ext;
|
|
exports org.xml.sax.helpers;
|
|
exports com.sun.org.apache.xml.internal.dtm to
|
|
java.xml.crypto;
|
|
exports com.sun.org.apache.xml.internal.utils to
|
|
java.xml.crypto;
|
|
exports com.sun.org.apache.xpath.internal to
|
|
java.xml.crypto;
|
|
exports com.sun.org.apache.xpath.internal.compiler to
|
|
java.xml.crypto;
|
|
exports com.sun.org.apache.xpath.internal.functions to
|
|
java.xml.crypto;
|
|
exports com.sun.org.apache.xpath.internal.objects to
|
|
java.xml.crypto;
|
|
exports com.sun.org.apache.xpath.internal.res to
|
|
java.xml.crypto;
|
|
// reflection access from com.sun.xml.internal.ws.api.streaming.XMLStreamWriterFactory
|
|
exports com.sun.xml.internal.stream.writers to java.xml.ws;
|
|
uses javax.xml.datatype.DatatypeFactory;
|
|
uses javax.xml.parsers.DocumentBuilderFactory;
|
|
uses javax.xml.parsers.SAXParserFactory;
|
|
uses javax.xml.stream.XMLEventFactory;
|
|
uses javax.xml.stream.XMLInputFactory;
|
|
uses javax.xml.stream.XMLOutputFactory;
|
|
uses javax.xml.transform.TransformerFactory;
|
|
uses javax.xml.validation.SchemaFactory;
|
|
uses javax.xml.xpath.XPathFactory;
|
|
uses org.xml.sax.XMLReader;
|
|
}
|