< prev index next >

src/java.desktop/share/classes/com/sun/imageio/plugins/bmp/BMPImageWriter.java

Print this page

        

@@ -67,11 +67,11 @@
 /**
  * The Java Image IO plugin writer for encoding a binary RenderedImage into
  * a BMP format.
  *
  * The encoding process may clip, subsample using the parameters
- * specified in the <code>ImageWriteParam</code>.
+ * specified in the {@code ImageWriteParam}.
  *
  * @see javax.imageio.plugins.bmp.BMPImageWriteParam
  */
 public class BMPImageWriter extends ImageWriter implements BMPConstants {
     /** The output stream to write into */

@@ -86,12 +86,12 @@
     private int[] bitPos;
     private byte[] bpixels;
     private short[] spixels;
     private int[] ipixels;
 
-    /** Constructs <code>BMPImageWriter</code> based on the provided
-     *  <code>ImageWriterSpi</code>.
+    /** Constructs {@code BMPImageWriter} based on the provided
+     *  {@code ImageWriterSpi}.
      */
     public BMPImageWriter(ImageWriterSpi originator) {
         super(originator);
     }
 
< prev index next >