This commit is contained in:
Lana Steuck 2017-06-08 23:11:11 +00:00
commit 993c9a0c83
4 changed files with 38 additions and 0 deletions
jaxws/src
java.xml.bind/share/classes
java.xml.ws/share/classes
jdk.xml.bind/share/classes
jdk.xml.ws/share/classes

@ -26,6 +26,8 @@
/**
* Defines the Java Architecture for XML Binding (JAXB) API.
*
* @uses javax.xml.bind.JAXBContextFactory
*
* @moduleGraph
* @since 9
*/

@ -27,6 +27,12 @@
* Defines the Java API for XML-Based Web Services (JAX-WS), and
* the Web Services Metadata API.
*
* @uses javax.xml.soap.MessageFactory
* @uses javax.xml.soap.SAAJMetaFactory
* @uses javax.xml.soap.SOAPConnectionFactory
* @uses javax.xml.soap.SOAPFactory
* @uses javax.xml.ws.spi.Provider
*
* @moduleGraph
* @since 9
*/

@ -23,6 +23,21 @@
* questions.
*/
/**
* Defines tools for JAXB classes and XML schema generation,
* including the <em>{@index schemagen schemagen tool}</em>
* and <em>{@index xjc xjc tool}</em> tools.
*
* <dl style="font-family:'DejaVu Sans', Arial, Helvetica, sans serif">
* <dt class="simpleTagLabel">Tool Guides:
* <dd>{@extLink schemagen_tool_reference schemagen},
* {@extLink xjc_tool_reference xjc}
* </dl>
*
* @moduleGraph
* @since 9
*/
@Deprecated(since="9", forRemoval=true)
module jdk.xml.bind {
requires java.activation;
requires java.compiler;

@ -23,6 +23,21 @@
* questions.
*/
/**
* Defines tools for JAX-WS classes and WSDL generation,
* including the <em>{@index wsgen wsgen tool}</em>
* and <em>{@index wsimport wsimport tool}</em> tools.
*
* <dl style="font-family:'DejaVu Sans', Arial, Helvetica, sans serif">
* <dt class="simpleTagLabel">Tool Guides:
* <dd>{@extLink wsgen_tool_reference wsgen},
* {@extLink wsimport_tool_reference wsimport}
* </dl>
*
* @moduleGraph
* @since 9
*/
@Deprecated(since="9", forRemoval=true)
module jdk.xml.ws {
requires java.compiler;
requires java.logging;