< prev index next >

src/java.xml.ws/share/classes/com/sun/xml/internal/ws/model/ParameterImpl.java

Print this page

        

*** 159,169 **** public int getIndex() { return index; } /** ! * @return true if <tt>this instanceof {@link WrapperParameter}</tt>. */ public boolean isWrapperStyle() { return false; } --- 159,169 ---- public int getIndex() { return index; } /** ! * @return true if {@code this instanceof} {@link WrapperParameter}. */ public boolean isWrapperStyle() { return false; }
*** 221,231 **** * If true, this parameter maps to the return value of a method invocation. * * <p> * {@link JavaMethodImpl#getResponseParameters()} is guaranteed to have * at most one such {@link ParameterImpl}. Note that there coule be none, ! * in which case the method returns <tt>void</tt>. */ public boolean isResponse() { return index == -1; } --- 221,231 ---- * If true, this parameter maps to the return value of a method invocation. * * <p> * {@link JavaMethodImpl#getResponseParameters()} is guaranteed to have * at most one such {@link ParameterImpl}. Note that there coule be none, ! * in which case the method returns {@code void}. */ public boolean isResponse() { return index == -1; }
< prev index next >