--- old/src/java.xml.ws/share/classes/javax/xml/ws/spi/WebServiceFeatureAnnotation.java 2015-04-21 17:20:21.212098472 +0400 +++ new/src/java.xml.ws/share/classes/javax/xml/ws/spi/WebServiceFeatureAnnotation.java 2015-04-21 17:20:21.124098472 +0400 @@ -39,27 +39,26 @@ /** * Annotation used to identify other annotations - * as a WebServiceFeature. + * as a {@code WebServiceFeature}. *

- * Each WebServiceFeature annotation annotated with + * Each {@code WebServiceFeature} annotation annotated with * this annotation MUST contain an - * enabled property of type - * boolean with a default value of true. + * {@code enabled} property of type + * {@code boolean} with a default value of {@code true}. *

* JAX-WS defines the following - * WebServiceFeature annotations (Addressing, - * MTOM, RespectBinding), however, an implementation + * {@code WebServiceFeature} annotations ({@code Addressing}, + * {@code MTOM}, {@code RespectBinding}), however, an implementation * may define vendors specific annotations for other features. *

- * Annotations annotated with WebServiceFeatureAnnotation MUST + * Annotations annotated with {@code WebServiceFeatureAnnotation} MUST * have the same @Target of {@link WebServiceRef} annotation, so that the resulting * feature annotation can be used in conjunction with the {@link WebServiceRef} * annotation if necessary. *

* If a JAX-WS implementation encounters an annotation annotated - * with the WebServiceFeatureAnnotation that it does not + * with the {@code WebServiceFeatureAnnotation} that it does not * recognize/support an error MUST be given. - *

* * @see Addressing * @see MTOM @@ -79,8 +78,8 @@ String id(); /** - * The WebServiceFeature bean that is associated - * with the WebServiceFeature annotation + * The {@code WebServiceFeature} bean that is associated + * with the {@code WebServiceFeature} annotation */ Class bean(); }