< prev index next >

src/java.xml.ws/share/classes/com/sun/xml/internal/ws/api/pipe/Codec.java

Print this page

        

@@ -177,11 +177,11 @@
      *      any state that requires isolation (such as temporary buffer.)
      *
      *      <p>
      *      If the {@link Codec} implementation is already
      *      re-entrant and multi-thread safe to begin with,
-     *      then this method may simply return <tt>this</tt>.
+     *      then this method may simply return {@code this}.
      */
     Codec copy();
 
     /**
      * Reads bytes from {@link InputStream} and constructs a {@link Message}.

@@ -206,11 +206,11 @@
      *
      * @param contentType
      *      The MIME content type (like "application/xml") of this byte stream.
      *      Thie text includes all the sub-headers of the content-type header. Therefore,
      *      in more complex case, this could be something like
-     *      <tt>multipart/related; boundary="--=_outer_boundary"; type="multipart/alternative"</tt>.
+     *      {@code multipart/related; boundary="--=_outer_boundary"; type="multipart/alternative"}.
      *      This parameter must not be null.
      *
      * @param response
      *      The parsed {@link Message} will be set to this {@link Packet}.
      *      {@link Codec} may add additional properties to this {@link Packet}.
< prev index next >