--- old/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/api/pipe/Stubs.java 2015-09-19 13:16:04.520938479 +0300 +++ new/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/api/pipe/Stubs.java 2015-09-19 13:16:04.392937844 +0300 @@ -75,9 +75,9 @@ *

Pipe next

*

* Stubs turn a method invocation into a {@link Pipe#process(com.sun.xml.internal.ws.api.message.Packet)} invocation, - * and this pipe passed in as the next parameter will receive a {@link Message} + * and this pipe passed in as the {@code next} parameter will receive a {@link Message} * from newly created stub. All the methods taking Tube <> parameter are deprecated. JAX-WS Runtime takes care of - * creating the tubeline when the next parameter is not passed. This gives flexibility for the JAX-WS Runtime + * creating the tubeline when the {@code next} parameter is not passed. This gives flexibility for the JAX-WS Runtime * to pass extra information during the tube line creation via {@link ClientTubeAssemblerContext}. * *

WSPortInfo portInfo

@@ -87,7 +87,7 @@ *

BindingImpl binding

*

* Stubs implement {@link BindingProvider}, and its {@link BindingProvider#getBinding()} - * will return this binding object. Stubs often also use this information + * will return this {@code binding} object. Stubs often also use this information * to decide which SOAP version a {@link Message} should be created in. * *

{@link WSService} service

@@ -98,7 +98,7 @@ *

{@link WSEndpointReference} epr

*

* If you want the created {@link Dispatch} to talk to the given EPR, specify the parameter. - * Otherwise leave it null. Note that the addressing needs to be enabled separately + * Otherwise leave it {@code null}. Note that the addressing needs to be enabled separately * for this to take effect. * * @author Kohsuke Kawaguchi