--- old/src/java.xml.ws/share/classes/javax/xml/ws/handler/HandlerResolver.java 2015-04-21 17:20:18.712098474 +0400 +++ new/src/java.xml.ws/share/classes/javax/xml/ws/handler/HandlerResolver.java 2015-04-21 17:20:18.620098474 +0400 @@ -26,15 +26,15 @@ package javax.xml.ws.handler; /** - * HandlerResolver is an interface implemented + * {@code HandlerResolver} is an interface implemented * by an application to get control over the handler chain * set on proxy/dispatch objects at the time of their creation. *

- * A HandlerResolver may be set on a Service - * using the setHandlerResolver method. - *

- * When the runtime invokes a HandlerResolver, it will - * pass it a PortInfo object containing information + * A {@code HandlerResolver} may be set on a {@code Service} + * using the {@code setHandlerResolver} method. + *

+ * When the runtime invokes a {@code HandlerResolver}, it will + * pass it a {@code PortInfo} object containing information * about the port that the proxy/dispatch object will be accessing. * * @see javax.xml.ws.Service#setHandlerResolver @@ -47,7 +47,7 @@ * Gets the handler chain for the specified port. * * @param portInfo Contains information about the port being accessed. - * @return java.util.List<Handler> chain + * @return {@code java.util.List} chain **/ public java.util.List getHandlerChain(PortInfo portInfo); }