author | dmarkov |
Thu, 01 Sep 2016 22:17:48 +0300 | |
changeset 40993 | a24dc7d0dd28 |
parent 40485 | 7071a8494a74 |
child 40829 | ad509d5baa06 |
permissions | -rw-r--r-- |
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 |
||
40485
7071a8494a74
8161965: Create initial javadoc description for modules
lancea
parents:
37927
diff
changeset
|
26 |
/** |
7071a8494a74
8161965: Create initial javadoc description for modules
lancea
parents:
37927
diff
changeset
|
27 |
* Defines the Java API for XML Processing (JAXP), the Streaming API for XML (StAX), |
7071a8494a74
8161965: Create initial javadoc description for modules
lancea
parents:
37927
diff
changeset
|
28 |
* the Simple API for XML (SAX), and the W3C Document Object Model (DOM) API. |
7071a8494a74
8161965: Create initial javadoc description for modules
lancea
parents:
37927
diff
changeset
|
29 |
*/ |
36520 | 30 |
module java.xml { |
31 |
exports javax.xml; |
|
32 |
exports javax.xml.catalog; |
|
33 |
exports javax.xml.datatype; |
|
34 |
exports javax.xml.namespace; |
|
35 |
exports javax.xml.parsers; |
|
36 |
exports javax.xml.stream; |
|
37 |
exports javax.xml.stream.events; |
|
38 |
exports javax.xml.stream.util; |
|
39 |
exports javax.xml.transform; |
|
40 |
exports javax.xml.transform.dom; |
|
41 |
exports javax.xml.transform.sax; |
|
42 |
exports javax.xml.transform.stax; |
|
43 |
exports javax.xml.transform.stream; |
|
44 |
exports javax.xml.validation; |
|
45 |
exports javax.xml.xpath; |
|
46 |
exports org.w3c.dom; |
|
47 |
exports org.w3c.dom.bootstrap; |
|
48 |
exports org.w3c.dom.events; |
|
49 |
exports org.w3c.dom.ls; |
|
50 |
exports org.w3c.dom.ranges; |
|
51 |
exports org.w3c.dom.traversal; |
|
52 |
exports org.w3c.dom.views; |
|
53 |
exports org.xml.sax; |
|
54 |
exports org.xml.sax.ext; |
|
55 |
exports org.xml.sax.helpers; |
|
56 |
exports com.sun.org.apache.xerces.internal.dom to |
|
57 |
java.xml.ws; |
|
58 |
exports com.sun.org.apache.xerces.internal.jaxp to |
|
59 |
java.xml.ws; |
|
60 |
exports com.sun.org.apache.xerces.internal.util to |
|
61 |
java.xml.ws; |
|
62 |
exports com.sun.org.apache.xml.internal.dtm to |
|
63 |
java.xml.crypto; |
|
64 |
exports com.sun.org.apache.xml.internal.resolver to |
|
65 |
java.xml.ws, |
|
66 |
jdk.xml.bind; |
|
67 |
exports com.sun.org.apache.xml.internal.resolver.tools to |
|
68 |
java.xml.ws, |
|
69 |
jdk.xml.bind; |
|
70 |
exports com.sun.org.apache.xml.internal.utils to |
|
71 |
java.xml.crypto; |
|
72 |
exports com.sun.org.apache.xpath.internal to |
|
73 |
java.xml.crypto; |
|
74 |
exports com.sun.org.apache.xpath.internal.compiler to |
|
75 |
java.xml.crypto; |
|
76 |
exports com.sun.org.apache.xpath.internal.functions to |
|
77 |
java.xml.crypto; |
|
78 |
exports com.sun.org.apache.xpath.internal.objects to |
|
79 |
java.xml.crypto; |
|
80 |
exports com.sun.org.apache.xpath.internal.res to |
|
81 |
java.xml.crypto; |
|
82 |
// reflection access from com.sun.xml.internal.ws.api.streaming.XMLStreamWriterFactory |
|
83 |
exports com.sun.xml.internal.stream.writers to java.xml.ws; |
|
84 |
uses javax.xml.datatype.DatatypeFactory; |
|
85 |
uses javax.xml.parsers.DocumentBuilderFactory; |
|
86 |
uses javax.xml.parsers.SAXParserFactory; |
|
87 |
uses javax.xml.stream.XMLEventFactory; |
|
88 |
uses javax.xml.stream.XMLInputFactory; |
|
89 |
uses javax.xml.stream.XMLOutputFactory; |
|
90 |
uses javax.xml.transform.TransformerFactory; |
|
91 |
uses javax.xml.validation.SchemaFactory; |
|
92 |
uses javax.xml.xpath.XPathFactory; |
|
37927
fe4019feb049
8152912: SAX XMLReaderFactory needs to be ServiceLoader compliant
joehw
parents:
36520
diff
changeset
|
93 |
uses org.xml.sax.XMLReader; |
36520 | 94 |
} |
95 |