mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-17 01:24:33 +02:00
8142968: Module System implementation
Initial integration of JEP 200, JEP 260, JEP 261, and JEP 282 Co-authored-by: Alex Buckley <alex.buckley@oracle.com> Co-authored-by: Jonathan Gibbons <jonathan.gibbons@oracle.com> Co-authored-by: Karen Kinnear <karen.kinnear@oracle.com> Co-authored-by: Mandy Chung <mandy.chung@oracle.com> Co-authored-by: Mark Reinhold <mark.reinhold@oracle.com> Co-authored-by: Daniel Fuchs <daniel.fuchs@oracle.com> Co-authored-by: Erik Joelsson <erik.joelsson@oracle.com> Reviewed-by: alanb, mchung, joehw
This commit is contained in:
parent
3a5e11a3c0
commit
81f516c57b
9 changed files with 188 additions and 14 deletions
90
jaxp/src/java.xml/share/classes/module-info.java
Normal file
90
jaxp/src/java.xml/share/classes/module-info.java
Normal file
|
@ -0,0 +1,90 @@
|
|||
/*
|
||||
* Copyright (c) 2014, 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.
|
||||
*/
|
||||
|
||||
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.xerces.internal.dom to
|
||||
java.xml.ws;
|
||||
exports com.sun.org.apache.xerces.internal.jaxp to
|
||||
java.xml.ws;
|
||||
exports com.sun.org.apache.xerces.internal.util to
|
||||
java.xml.ws;
|
||||
exports com.sun.org.apache.xml.internal.dtm to
|
||||
java.xml.crypto;
|
||||
exports com.sun.org.apache.xml.internal.resolver to
|
||||
java.xml.ws,
|
||||
jdk.xml.bind;
|
||||
exports com.sun.org.apache.xml.internal.resolver.tools to
|
||||
java.xml.ws,
|
||||
jdk.xml.bind;
|
||||
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;
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue