--- old/src/java.xml.ws/share/classes/javax/xml/ws/LogicalMessage.java 2015-07-09 12:14:05.000000000 +0200 +++ new/src/java.xml.ws/share/classes/javax/xml/ws/LogicalMessage.java 2015-07-09 12:14:05.000000000 +0200 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2005, 2012, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2005, 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 @@ -28,7 +28,7 @@ import javax.xml.transform.Source; import javax.xml.bind.JAXBContext; -/** The LogicalMessage interface represents a +/** The {@code LogicalMessage} interface represents a * protocol agnostic XML message and contains methods that * provide access to the payload of the message. * @@ -38,17 +38,17 @@ /** Gets the message payload as an XML source, may be called * multiple times on the same LogicalMessage instance, always - * returns a new Source that may be used to retrieve the entire + * returns a new {@code Source} that may be used to retrieve the entire * message payload. * - *

If the returned Source is an instance of - * DOMSource, then + *

If the returned {@code Source} is an instance of + * {@code DOMSource}, then * modifications to the encapsulated DOM tree change the message * payload in-place, there is no need to susequently call - * setPayload. Other types of Source provide only + * {@code setPayload}. Other types of {@code Source} provide only * read access to the message payload. * - * @return The contained message payload; returns null if no + * @return The contained message payload; returns {@code null} if no * payload is present in this message. **/ public Source getPayload(); @@ -65,11 +65,11 @@ /** Gets the message payload as a JAXB object. Note that there is no * connection between the returned object and the message payload, - * changes to the payload require calling setPayload. + * changes to the payload require calling {@code setPayload}. * * @param context The JAXBContext that should be used to unmarshall * the message payload - * @return The contained message payload; returns null if no + * @return The contained message payload; returns {@code null} if no * payload is present in this message * @throws WebServiceException If an error occurs when using a supplied * JAXBContext to unmarshall the payload. The cause of