--- old/src/java.xml.ws/share/classes/javax/xml/soap/SAAJMetaFactory.java 2015-07-08 13:25:08.000000000 +0200 +++ new/src/java.xml.ws/share/classes/javax/xml/soap/SAAJMetaFactory.java 2015-07-08 13:25:08.000000000 +0200 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2004, 2013, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2004, 2015, 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 @@ -27,9 +27,9 @@ /** * The access point for the implementation classes of the factories defined in the -* SAAJ API. All of the newInstance methods defined on factories in +* SAAJ API. All of the {@code newInstance} methods defined on factories in * SAAJ 1.3 defer to instances of this class to do the actual object creation. -* The implementations of newInstance() methods (in SOAPFactory and MessageFactory) +* The implementations of {@code newInstance()} methods (in SOAPFactory and MessageFactory) * that existed in SAAJ 1.2 have been updated to also delegate to the SAAJMetaFactory when the SAAJ 1.2 * defined lookup fails to locate the Factory implementation class name. * @@ -48,10 +48,10 @@ "com.sun.xml.internal.messaging.saaj.soap.SAAJMetaFactoryImpl"; /** - * Creates a new instance of a concrete SAAJMetaFactory object. + * Creates a new instance of a concrete {@code SAAJMetaFactory} object. * The SAAJMetaFactory is an SPI, it pulls the creation of the other factories together into a * single place. Changing out the SAAJMetaFactory has the effect of changing out the entire SAAJ - * implementation. Service providers provide the name of their SAAJMetaFactory + * implementation. Service providers provide the name of their {@code SAAJMetaFactory} * implementation. * * This method uses the following ordered lookup procedure to determine the SAAJMetaFactory implementation class to load: @@ -65,8 +65,8 @@ *
  • Default to com.sun.xml.internal.messaging.saaj.soap.SAAJMetaFactoryImpl. * * - * @return a concrete SAAJMetaFactory object - * @exception SOAPException if there is an error in creating the SAAJMetaFactory + * @return a concrete {@code SAAJMetaFactory} object + * @exception SOAPException if there is an error in creating the {@code SAAJMetaFactory} */ static SAAJMetaFactory getInstance() throws SOAPException { try { @@ -84,10 +84,10 @@ protected SAAJMetaFactory() { } /** - * Creates a MessageFactory object for - * the given String protocol. + * Creates a {@code MessageFactory} object for + * the given {@code String} protocol. * - * @param protocol a String indicating the protocol + * @param protocol a {@code String} indicating the protocol * @exception SOAPException if there is an error in creating the * MessageFactory * @see SOAPConstants#SOAP_1_1_PROTOCOL @@ -98,10 +98,10 @@ throws SOAPException; /** - * Creates a SOAPFactory object for - * the given String protocol. + * Creates a {@code SOAPFactory} object for + * the given {@code String} protocol. * - * @param protocol a String indicating the protocol + * @param protocol a {@code String} indicating the protocol * @exception SOAPException if there is an error in creating the * SOAPFactory * @see SOAPConstants#SOAP_1_1_PROTOCOL