< prev index next >

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

Print this page

        

*** 79,97 **** * @return Returns the index. */ int getIndex(); /** ! * @return true if <tt>this instanceof {@link com.sun.xml.internal.ws.model.WrapperParameter}</tt>. */ boolean isWrapperStyle(); /** * Returns true if this parameter is bound to the return value from the {@link JavaMethod}. * * <p> ! * Just the convenience method for <tt>getIndex()==-1</tt> */ boolean isReturnValue(); /** * Returns the binding associated with the parameter. For IN parameter the binding will be --- 79,97 ---- * @return Returns the index. */ int getIndex(); /** ! * @return true if {@code this instanceof} {@link com.sun.xml.internal.ws.model.WrapperParameter}. */ boolean isWrapperStyle(); /** * Returns true if this parameter is bound to the return value from the {@link JavaMethod}. * * <p> ! * Just the convenience method for {@code getIndex()==-1} */ boolean isReturnValue(); /** * Returns the binding associated with the parameter. For IN parameter the binding will be
*** 136,146 **** * If true, this parameter maps to the return value of a method invocation. * * <p> * {@link JavaMethod#getResponseParameters()} is guaranteed to have * at most one such {@link Parameter}. Note that there coule be none, ! * in which case the method returns <tt>void</tt>. * * <p> * Other response parameters are bound to {@link Holder}. */ boolean isResponse(); --- 136,146 ---- * If true, this parameter maps to the return value of a method invocation. * * <p> * {@link JavaMethod#getResponseParameters()} is guaranteed to have * at most one such {@link Parameter}. Note that there coule be none, ! * in which case the method returns {@code void}. * * <p> * Other response parameters are bound to {@link Holder}. */ boolean isResponse();
< prev index next >