8130753: Sync-up javadoc changes in jax-ws area - includes JAX-B API, JAX-WS API, SAAJ-API

Reviewed-by: joehw
This commit is contained in:
Miroslav Kos 2015-07-10 11:42:59 +02:00
parent 7c256783a5
commit 4807976fb7
73 changed files with 1540 additions and 1540 deletions

View file

@ -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.ElementType.*;
import static java.lang.annotation.RetentionPolicy.*;
/**
* The <code>WebServiceRefs</code> annotation allows
* The {@code WebServiceRefs} annotation allows
* multiple web service references to be declared at the
* class level.
*
@ -50,13 +50,13 @@ import static java.lang.annotation.RetentionPolicy.*;
* to inject the resource along with its features.
*
* <p>
* <b>Example</b>: The <code>StockQuoteProvider</code>
* proxy instance, and the <code>StockQuoteService</code> service
* <b>Example</b>: The {@code StockQuoteProvider}
* proxy instance, and the {@code StockQuoteService} service
* instance are injected using @WebServiceRefs.
*
* <pre><code>
* &#64;WebServiceRefs({&#64;WebServiceRef(name="service/stockquoteservice", value=StockQuoteService.class),
* &#64;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();