--- old/src/java.xml.ws/share/classes/javax/xml/ws/WebServiceRefs.java 2015-07-08 13:25:29.000000000 +0200 +++ new/src/java.xml.ws/share/classes/javax/xml/ws/WebServiceRefs.java 2015-07-08 13:25:28.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 @@ -32,7 +32,7 @@ import static java.lang.annotation.RetentionPolicy.*; /** - * The WebServiceRefs annotation allows + * The {@code WebServiceRefs} annotation allows * multiple web service references to be declared at the * class level. * @@ -50,13 +50,13 @@ * to inject the resource along with its features. * *

- * Example: The StockQuoteProvider - * proxy instance, and the StockQuoteService service + * Example: The {@code StockQuoteProvider} + * proxy instance, and the {@code StockQuoteService} service * instance are injected using @WebServiceRefs. * - *


- *    @WebServiceRefs({@WebServiceRef(name="service/stockquoteservice", value=StockQuoteService.class),
- *                     @WebServiceRef(name="service/stockquoteprovider", type=StockQuoteProvider.class, value=StockQuoteService.class})
+ * 
+ *    {@literal @}WebServiceRefs({{@literal @}WebServiceRef(name="service/stockquoteservice", value=StockQuoteService.class),
+ *                     {@literal @}WebServiceRef(name="service/stockquoteprovider", type=StockQuoteProvider.class, value=StockQuoteService.class})
  *    public class MyClient {
  *        void init() {
  *            Context ic = new InitialContext();
@@ -66,7 +66,7 @@
  *       }
  *       ...
  *    }
- * 
+ *
* * @see WebServiceRef * @since 1.6, JAX-WS 2.0