--- old/src/java.xml.ws/share/classes/javax/xml/ws/handler/Handler.java 2015-07-08 13:25:29.000000000 +0200 +++ new/src/java.xml.ws/share/classes/javax/xml/ws/handler/Handler.java 2015-07-08 13:25:29.000000000 +0200 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2005, 2013, 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,14 +28,14 @@ import javax.xml.ws.ProtocolException; import javax.xml.ws.handler.MessageContext; -/** The Handler interface +/** The {@code Handler} interface * is the base interface for JAX-WS handlers. * * @since 1.6, JAX-WS 2.0 **/ public interface Handler { - /** The handleMessage method is invoked for normal processing + /** The {@code handleMessage} method is invoked for normal processing * of inbound and outbound messages. Refer to the description of the handler * framework in the JAX-WS specification for full details. * @@ -43,9 +43,9 @@ * @return An indication of whether handler processing should continue for * the current message * * @throws RuntimeException Causes the JAX-WS runtime to cease @@ -55,7 +55,7 @@ **/ public boolean handleMessage(C context); - /** The handleFault method is invoked for fault message + /** The {@code handleFault} method is invoked for fault message * processing. Refer to the description of the handler * framework in the JAX-WS specification for full details. * @@ -63,9 +63,9 @@ * @return An indication of whether handler fault processing should continue * for the current message * * @throws RuntimeException Causes the JAX-WS runtime to cease