jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/api/model/Parameter.java
changeset 32795 5a5710ee05a0
parent 25871 b80b84e87032
equal deleted inserted replaced
32712:f61a63b7d1e5 32795:5a5710ee05a0
    79      * @return Returns the index.
    79      * @return Returns the index.
    80      */
    80      */
    81     int getIndex();
    81     int getIndex();
    82 
    82 
    83     /**
    83     /**
    84      * @return true if <tt>this instanceof {@link com.sun.xml.internal.ws.model.WrapperParameter}</tt>.
    84      * @return true if {@code this instanceof} {@link com.sun.xml.internal.ws.model.WrapperParameter}.
    85      */
    85      */
    86     boolean isWrapperStyle();
    86     boolean isWrapperStyle();
    87 
    87 
    88     /**
    88     /**
    89      * Returns true if this parameter is bound to the return value from the {@link JavaMethod}.
    89      * Returns true if this parameter is bound to the return value from the {@link JavaMethod}.
    90      *
    90      *
    91      * <p>
    91      * <p>
    92      * Just the convenience method for <tt>getIndex()==-1</tt>
    92      * Just the convenience method for {@code getIndex()==-1}
    93      */
    93      */
    94     boolean isReturnValue();
    94     boolean isReturnValue();
    95 
    95 
    96     /**
    96     /**
    97      * Returns the binding associated with the parameter. For IN parameter the binding will be
    97      * Returns the binding associated with the parameter. For IN parameter the binding will be
   136      * If true, this parameter maps to the return value of a method invocation.
   136      * If true, this parameter maps to the return value of a method invocation.
   137      *
   137      *
   138      * <p>
   138      * <p>
   139      * {@link JavaMethod#getResponseParameters()} is guaranteed to have
   139      * {@link JavaMethod#getResponseParameters()} is guaranteed to have
   140      * at most one such {@link Parameter}. Note that there coule be none,
   140      * at most one such {@link Parameter}. Note that there coule be none,
   141      * in which case the method returns <tt>void</tt>.
   141      * in which case the method returns {@code void}.
   142      *
   142      *
   143      * <p>
   143      * <p>
   144      * Other response parameters are bound to {@link Holder}.
   144      * Other response parameters are bound to {@link Holder}.
   145      */
   145      */
   146     boolean isResponse();
   146     boolean isResponse();