--- old/src/java.xml.ws/share/classes/javax/xml/ws/handler/MessageContext.java 2015-04-21 17:20:19.068098474 +0400 +++ new/src/java.xml.ws/share/classes/javax/xml/ws/handler/MessageContext.java 2015-04-21 17:20:18.980098474 +0400 @@ -27,12 +27,12 @@ import java.util.Map; /** - * The interface MessageContext abstracts the message - * context that is processed by a handler in the handle + * The interface {@code MessageContext} abstracts the message + * context that is processed by a handler in the {@code handle} * method. * - *

The MessageContext interface provides methods to - * manage a property set. MessageContext properties + *

The {@code MessageContext} interface provides methods to + * manage a property set. {@code MessageContext} properties * enable handlers in a handler chain to share processing related * state. * @@ -41,8 +41,8 @@ public interface MessageContext extends Map { /** - * Standard property: message direction, true for - * outbound messages, false for inbound. + * Standard property: message direction, {@code true} for + * outbound messages, {@code false} for inbound. *

Type: boolean */ public static final String MESSAGE_OUTBOUND_PROPERTY = @@ -51,7 +51,7 @@ /** * Standard property: Map of attachments to a message for the inbound * message, key is the MIME Content-ID, value is a DataHandler. - *

Type: java.util.Map<String,DataHandler> + *

Type: {@code java.util.Map} */ public static final String INBOUND_MESSAGE_ATTACHMENTS = "javax.xml.ws.binding.attachments.inbound"; @@ -59,7 +59,7 @@ /** * Standard property: Map of attachments to a message for the outbound * message, key is the MIME Content-ID, value is a DataHandler. - *

Type: java.util.Map<String,DataHandler> + *

Type: {@code java.util.Map} */ public static final String OUTBOUND_MESSAGE_ATTACHMENTS = "javax.xml.ws.binding.attachments.outbound"; @@ -108,14 +108,14 @@ /** * Standard property: HTTP request headers. - *

Type: java.util.Map<java.lang.String, java.util.List<java.lang.String>> + *

Type: {@code java.util.Map>} */ public static final String HTTP_REQUEST_HEADERS = "javax.xml.ws.http.request.headers"; /** * Standard property: HTTP response headers. - *

Type: java.util.Map<java.lang.String, java.util.List<java.lang.String>> + *

Type: {@code java.util.Map>} */ public static final String HTTP_RESPONSE_HEADERS = "javax.xml.ws.http.response.headers"; @@ -166,7 +166,7 @@ * Standard property: WS Addressing Reference Parameters. * The list MUST include all SOAP headers marked with the * wsa:IsReferenceParameter="true" attribute. - *

Type: List<Element> + *

Type: {@code List} * * @since 1.6, JAX-WS 2.1 */ @@ -174,10 +174,10 @@ "javax.xml.ws.reference.parameters"; /** - * Property scope. Properties scoped as APPLICATION are + * Property scope. Properties scoped as {@code APPLICATION} are * visible to handlers, * client applications and service endpoints; properties scoped as - * HANDLER + * {@code HANDLER} * are only normally visible to handlers. */ public enum Scope {APPLICATION, HANDLER}; @@ -186,7 +186,7 @@ * Sets the scope of a property. * * @param name Name of the property associated with the - * MessageContext + * {@code MessageContext} * @param scope Desired scope of the property * @throws java.lang.IllegalArgumentException if an illegal * property name is specified