--- old/src/java.xml.ws/share/classes/javax/xml/soap/SAAJResult.java 2015-07-08 13:25:09.000000000 +0200 +++ new/src/java.xml.ws/share/classes/javax/xml/soap/SAAJResult.java 2015-07-08 13:25:09.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 @@ -40,18 +40,18 @@ public class SAAJResult extends DOMResult { /** - * Creates a SAAJResult that will present results in the form + * Creates a {@code SAAJResult} that will present results in the form * of a SAAJ tree that supports the default (SOAP 1.1) protocol. *

- * This kind of SAAJResult is meant for use in situations where the + * This kind of {@code SAAJResult} is meant for use in situations where the * results will be used as a parameter to a method that takes a parameter - * whose type, such as SOAPElement, is drawn from the SAAJ + * whose type, such as {@code SOAPElement}, is drawn from the SAAJ * API. When used in a transformation, the results are populated into the - * SOAPPart of a SOAPMessage that is created internally. - * The SOAPPart returned by {@link DOMResult#getNode()} + * {@code SOAPPart} of a {@code SOAPMessage} that is created internally. + * The {@code SOAPPart} returned by {@link DOMResult#getNode()} * is not guaranteed to be well-formed. * - * @throws SOAPException if there is a problem creating a SOAPMessage + * @throws SOAPException if there is a problem creating a {@code SOAPMessage} * * @since 1.6, SAAJ 1.3 */ @@ -60,23 +60,23 @@ } /** - * Creates a SAAJResult that will present results in the form + * Creates a {@code SAAJResult} that will present results in the form * of a SAAJ tree that supports the specified protocol. The - * DYNAMIC_SOAP_PROTOCOL is ambiguous in this context and will - * cause this constructor to throw an UnsupportedOperationException. + * {@code DYNAMIC_SOAP_PROTOCOL} is ambiguous in this context and will + * cause this constructor to throw an {@code UnsupportedOperationException}. *

- * This kind of SAAJResult is meant for use in situations where the + * This kind of {@code SAAJResult} is meant for use in situations where the * results will be used as a parameter to a method that takes a parameter - * whose type, such as SOAPElement, is drawn from the SAAJ + * whose type, such as {@code SOAPElement}, is drawn from the SAAJ * API. When used in a transformation the results are populated into the - * SOAPPart of a SOAPMessage that is created - * internally. The SOAPPart returned by {@link DOMResult#getNode()} + * {@code SOAPPart} of a {@code SOAPMessage} that is created + * internally. The {@code SOAPPart} returned by {@link DOMResult#getNode()} * is not guaranteed to be well-formed. * * @param protocol - the name of the SOAP protocol that the resulting SAAJ * tree should support * - * @throws SOAPException if a SOAPMessage supporting the + * @throws SOAPException if a {@code SOAPMessage} supporting the * specified protocol cannot be created * * @since 1.6, SAAJ 1.3 @@ -86,16 +86,16 @@ } /** - * Creates a SAAJResult that will write the results into the - * SOAPPart of the supplied SOAPMessage. + * Creates a {@code SAAJResult} that will write the results into the + * {@code SOAPPart} of the supplied {@code SOAPMessage}. * In the normal case these results will be written using DOM APIs and, - * as a result, the finished SOAPPart will not be guaranteed + * as a result, the finished {@code SOAPPart} will not be guaranteed * to be well-formed unless the data used to create it is also well formed. - * When used in a transformation the validity of the SOAPMessage + * When used in a transformation the validity of the {@code SOAPMessage} * after the transformation can be guaranteed only by means outside SAAJ * specification. * - * @param message - the message whose SOAPPart will be + * @param message - the message whose {@code SOAPPart} will be * populated as a result of some transformation or * marshalling operation * @@ -106,11 +106,11 @@ } /** - * Creates a SAAJResult that will write the results as a - * child node of the SOAPElement specified. In the normal + * Creates a {@code SAAJResult} that will write the results as a + * child node of the {@code SOAPElement} specified. In the normal * case these results will be written using DOM APIs and as a result may * invalidate the structure of the SAAJ tree. This kind of - * SAAJResult should only be used when the validity of the + * {@code SAAJResult} should only be used when the validity of the * incoming data can be guaranteed by means outside of the SAAJ * specification. *