--- old/src/share/jaxws_classes/com/sun/xml/internal/ws/api/model/JavaMethod.java 2013-04-04 15:28:52.364614404 +0200 +++ new/src/share/jaxws_classes/com/sun/xml/internal/ws/api/model/JavaMethod.java 2013-04-04 15:28:52.316614403 +0200 @@ -1,5 +1,5 @@ /* - * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1997, 2012, 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 @@ -31,6 +31,7 @@ import javax.xml.namespace.QName; import java.lang.reflect.Method; +import javax.jws.WebService; /** * Abstracts the annotated {@link Method} of a SEI. @@ -48,18 +49,18 @@ * On the server side, it uses this for invocation of the web service * *

- * {@link @WebService}(endpointInterface="I") + * {@literal @}{@link WebService}(endpointInterface="I") * class A { } * * In this case, it retuns A's method * *

- * {@link @WebService}(endpointInterface="I") + * {@literal @}{@link WebService}(endpointInterface="I") * class A implements I { } * In this case, it returns A's method * *

- * {@link @WebService} + * {@literal @}{@link WebService} * class A { } * In this case, it returns A's method * @@ -73,17 +74,17 @@ * Returns the SEI method if there is one. * *

- * {@link @WebService}(endpointInterface="I") + * {@literal @}{@link WebService}(endpointInterface="I") * class A { } * In this case, it retuns I's method * *

- * {@link @WebService}(endpointInterface="I") + * {@literal @}{@link WebService}(endpointInterface="I") * class A implements I { } * In this case, it returns I's method * *

- * {@link @WebService} + * {@literal @}{@link WebService} * class A { } * In this case, it returns A's method *