mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-17 17:44:40 +02:00
8047724: @since tag cleanup in jaxws
Reviewed-by: alanb, mkos
This commit is contained in:
parent
5c18e91b47
commit
10d82f29a4
193 changed files with 413 additions and 342 deletions
|
@ -257,7 +257,7 @@ import java.io.InputStream;
|
|||
* @see Marshaller
|
||||
* @see Unmarshaller
|
||||
* @see S 7.4.1 "Named Packages" in Java Language Specification</a>
|
||||
* @since JAXB1.0
|
||||
* @since 1.6, JAXB 1.0
|
||||
*/
|
||||
public abstract class JAXBContext {
|
||||
|
||||
|
@ -423,7 +423,7 @@ public abstract class JAXBContext {
|
|||
* <li>failure to locate a value for the context factory provider property</li>
|
||||
* <li>mixing schema derived packages from different providers on the same contextPath</li>
|
||||
* </ol>
|
||||
* @since JAXB2.0
|
||||
* @since 1.6, JAXB 2.0
|
||||
*/
|
||||
public static JAXBContext newInstance( String contextPath, ClassLoader classLoader, Map<String,?> properties )
|
||||
throws JAXBException {
|
||||
|
@ -497,7 +497,7 @@ public abstract class JAXBContext {
|
|||
// * @throws IllegalArgumentException
|
||||
// * if the parameter contains {@code null} (i.e., {@code newInstance(null);})
|
||||
// *
|
||||
// * @since JAXB2.0
|
||||
// * @since JAXB 2.0
|
||||
// */
|
||||
// public static JAXBContext newInstance( Source[] externalBindings, Class... classesToBeBound )
|
||||
// throws JAXBException {
|
||||
|
@ -576,7 +576,7 @@ public abstract class JAXBContext {
|
|||
* @throws IllegalArgumentException
|
||||
* if the parameter contains {@code null} (i.e., {@code newInstance(null);})
|
||||
*
|
||||
* @since JAXB2.0
|
||||
* @since 1.6, JAXB 2.0
|
||||
*/
|
||||
public static JAXBContext newInstance( Class... classesToBeBound )
|
||||
throws JAXBException {
|
||||
|
@ -622,7 +622,7 @@ public abstract class JAXBContext {
|
|||
* @throws IllegalArgumentException
|
||||
* if the parameter contains {@code null} (i.e., {@code newInstance(null,someMap);})
|
||||
*
|
||||
* @since JAXB2.0
|
||||
* @since 1.6, JAXB 2.0
|
||||
*/
|
||||
public static JAXBContext newInstance( Class[] classesToBeBound, Map<String,?> properties )
|
||||
throws JAXBException {
|
||||
|
@ -692,7 +692,7 @@ public abstract class JAXBContext {
|
|||
* if DOM API corresponding to <tt>domType</tt> is not supported by
|
||||
* the implementation.
|
||||
*
|
||||
* @since JAXB2.0
|
||||
* @since 1.6, JAXB 2.0
|
||||
*/
|
||||
public <T> Binder<T> createBinder(Class<T> domType) {
|
||||
// to make JAXB 1.0 implementations work, this method must not be
|
||||
|
@ -705,7 +705,7 @@ public abstract class JAXBContext {
|
|||
*
|
||||
* @return always a new valid <tt>Binder</tt> object.
|
||||
*
|
||||
* @since JAXB2.0
|
||||
* @since 1.6, JAXB 2.0
|
||||
*/
|
||||
public Binder<Node> createBinder() {
|
||||
return createBinder(Node.class);
|
||||
|
@ -722,7 +722,7 @@ public abstract class JAXBContext {
|
|||
* Calling this method on JAXB 1.0 implementations will throw
|
||||
* an UnsupportedOperationException.
|
||||
*
|
||||
* @since JAXB2.0
|
||||
* @since 1.6, JAXB 2.0
|
||||
*/
|
||||
public JAXBIntrospector createJAXBIntrospector() {
|
||||
// to make JAXB 1.0 implementations work, this method must not be
|
||||
|
@ -744,7 +744,7 @@ public abstract class JAXBContext {
|
|||
* Calling this method on JAXB 1.0 implementations will throw
|
||||
* an UnsupportedOperationException.
|
||||
*
|
||||
* @since JAXB 2.0
|
||||
* @since 1.6, JAXB 2.0
|
||||
*/
|
||||
public void generateSchema(SchemaOutputResolver outputResolver) throws IOException {
|
||||
// to make JAXB 1.0 implementations work, this method must not be
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue