36520
|
1 |
/*
|
|
2 |
* Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
|
|
3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
4 |
*
|
|
5 |
* This code is free software; you can redistribute it and/or modify it
|
|
6 |
* under the terms of the GNU General Public License version 2 only, as
|
|
7 |
* published by the Free Software Foundation. Oracle designates this
|
|
8 |
* particular file as subject to the "Classpath" exception as provided
|
|
9 |
* by Oracle in the LICENSE file that accompanied this code.
|
|
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 |
module java.xml {
|
|
27 |
exports javax.xml;
|
|
28 |
exports javax.xml.catalog;
|
|
29 |
exports javax.xml.datatype;
|
|
30 |
exports javax.xml.namespace;
|
|
31 |
exports javax.xml.parsers;
|
|
32 |
exports javax.xml.stream;
|
|
33 |
exports javax.xml.stream.events;
|
|
34 |
exports javax.xml.stream.util;
|
|
35 |
exports javax.xml.transform;
|
|
36 |
exports javax.xml.transform.dom;
|
|
37 |
exports javax.xml.transform.sax;
|
|
38 |
exports javax.xml.transform.stax;
|
|
39 |
exports javax.xml.transform.stream;
|
|
40 |
exports javax.xml.validation;
|
|
41 |
exports javax.xml.xpath;
|
|
42 |
exports org.w3c.dom;
|
|
43 |
exports org.w3c.dom.bootstrap;
|
|
44 |
exports org.w3c.dom.events;
|
|
45 |
exports org.w3c.dom.ls;
|
|
46 |
exports org.w3c.dom.ranges;
|
|
47 |
exports org.w3c.dom.traversal;
|
|
48 |
exports org.w3c.dom.views;
|
|
49 |
exports org.xml.sax;
|
|
50 |
exports org.xml.sax.ext;
|
|
51 |
exports org.xml.sax.helpers;
|
|
52 |
exports com.sun.org.apache.xerces.internal.dom to
|
|
53 |
java.xml.ws;
|
|
54 |
exports com.sun.org.apache.xerces.internal.jaxp to
|
|
55 |
java.xml.ws;
|
|
56 |
exports com.sun.org.apache.xerces.internal.util to
|
|
57 |
java.xml.ws;
|
|
58 |
exports com.sun.org.apache.xml.internal.dtm to
|
|
59 |
java.xml.crypto;
|
|
60 |
exports com.sun.org.apache.xml.internal.resolver to
|
|
61 |
java.xml.ws,
|
|
62 |
jdk.xml.bind;
|
|
63 |
exports com.sun.org.apache.xml.internal.resolver.tools to
|
|
64 |
java.xml.ws,
|
|
65 |
jdk.xml.bind;
|
|
66 |
exports com.sun.org.apache.xml.internal.utils to
|
|
67 |
java.xml.crypto;
|
|
68 |
exports com.sun.org.apache.xpath.internal to
|
|
69 |
java.xml.crypto;
|
|
70 |
exports com.sun.org.apache.xpath.internal.compiler to
|
|
71 |
java.xml.crypto;
|
|
72 |
exports com.sun.org.apache.xpath.internal.functions to
|
|
73 |
java.xml.crypto;
|
|
74 |
exports com.sun.org.apache.xpath.internal.objects to
|
|
75 |
java.xml.crypto;
|
|
76 |
exports com.sun.org.apache.xpath.internal.res to
|
|
77 |
java.xml.crypto;
|
|
78 |
// reflection access from com.sun.xml.internal.ws.api.streaming.XMLStreamWriterFactory
|
|
79 |
exports com.sun.xml.internal.stream.writers to java.xml.ws;
|
|
80 |
uses javax.xml.datatype.DatatypeFactory;
|
|
81 |
uses javax.xml.parsers.DocumentBuilderFactory;
|
|
82 |
uses javax.xml.parsers.SAXParserFactory;
|
|
83 |
uses javax.xml.stream.XMLEventFactory;
|
|
84 |
uses javax.xml.stream.XMLInputFactory;
|
|
85 |
uses javax.xml.stream.XMLOutputFactory;
|
|
86 |
uses javax.xml.transform.TransformerFactory;
|
|
87 |
uses javax.xml.validation.SchemaFactory;
|
|
88 |
uses javax.xml.xpath.XPathFactory;
|
|
89 |
}
|
|
90 |
|