< prev index next >

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

Print this page

        

@@ -159,11 +159,11 @@
     public int getIndex() {
         return index;
     }
 
     /**
-     * @return true if <tt>this instanceof {@link WrapperParameter}</tt>.
+     * @return true if {@code this instanceof} {@link WrapperParameter}.
      */
     public boolean isWrapperStyle() {
         return false;
     }
 

@@ -221,11 +221,11 @@
      * 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>.
+     * in which case the method returns {@code void}.
      */
     public boolean isResponse() {
         return index == -1;
     }
 
< prev index next >