--- old/src/java.xml.ws/share/classes/javax/xml/ws/soap/SOAPBinding.java 2015-04-21 17:20:20.492098472 +0400 +++ new/src/java.xml.ws/share/classes/javax/xml/ws/soap/SOAPBinding.java 2015-04-21 17:20:20.404098472 +0400 @@ -31,7 +31,7 @@ import javax.xml.soap.SOAPFactory; import javax.xml.soap.MessageFactory; -/** The SOAPBinding interface is an abstraction for +/** The {@code SOAPBinding} interface is an abstraction for * the SOAP binding. * * @since 1.6, JAX-WS 2.0 @@ -63,7 +63,7 @@ /** Gets the roles played by the SOAP binding instance. * - * @return Set<String> The set of roles played by the binding instance. + * @return {@code Set} The set of roles played by the binding instance. **/ public Set getRoles(); @@ -76,9 +76,9 @@ public void setRoles(Set roles); /** - * Returns true if the use of MTOM is enabled. + * Returns {@code true} if the use of MTOM is enabled. * - * @return true if and only if the use of MTOM is enabled. + * @return {@code true} if and only if the use of MTOM is enabled. **/ public boolean isMTOMEnabled(); @@ -86,7 +86,7 @@ /** * Enables or disables use of MTOM. * - * @param flag A boolean specifying whether the use of MTOM should + * @param flag A {@code boolean} specifying whether the use of MTOM should * be enabled or disabled. * @throws WebServiceException If the specified setting is not supported * by this binding instance. @@ -95,14 +95,14 @@ public void setMTOMEnabled(boolean flag); /** - * Gets the SAAJ SOAPFactory instance used by this SOAP binding. + * Gets the SAAJ {@code SOAPFactory} instance used by this SOAP binding. * * @return SOAPFactory instance used by this SOAP binding. **/ public SOAPFactory getSOAPFactory(); /** - * Gets the SAAJ MessageFactory instance used by this SOAP binding. + * Gets the SAAJ {@code MessageFactory} instance used by this SOAP binding. * * @return MessageFactory instance used by this SOAP binding. **/