< prev index next >

src/java.desktop/share/classes/java/awt/image/CropImageFilter.java

Print this page

        

@@ -66,15 +66,15 @@
     }
 
     /**
      * Passes along  the properties from the source object after adding a
      * property indicating the cropped region.
-     * This method invokes <code>super.setProperties</code>,
+     * This method invokes {@code super.setProperties},
      * which might result in additional properties being added.
      * <p>
      * Note: This method is intended to be called by the
-     * <code>ImageProducer</code> of the <code>Image</code> whose pixels
+     * {@code ImageProducer} of the {@code Image} whose pixels
      * are being filtered. Developers using
      * this class to filter pixels from an image should avoid calling
      * this method directly since that operation could interfere
      * with the filtering operation.
      */

@@ -88,11 +88,11 @@
     /**
      * Override the source image's dimensions and pass the dimensions
      * of the rectangular cropped region to the ImageConsumer.
      * <p>
      * Note: This method is intended to be called by the
-     * <code>ImageProducer</code> of the <code>Image</code> whose
+     * {@code ImageProducer} of the {@code Image} whose
      * pixels are being filtered. Developers using
      * this class to filter pixels from an image should avoid calling
      * this method directly since that operation could interfere
      * with the filtering operation.
      * @see ImageConsumer

@@ -105,11 +105,11 @@
      * Determine whether the delivered byte pixels intersect the region to
      * be extracted and passes through only that subset of pixels that
      * appear in the output region.
      * <p>
      * Note: This method is intended to be called by the
-     * <code>ImageProducer</code> of the <code>Image</code> whose
+     * {@code ImageProducer} of the {@code Image} whose
      * pixels are being filtered. Developers using
      * this class to filter pixels from an image should avoid calling
      * this method directly since that operation could interfere
      * with the filtering operation.
      */

@@ -145,11 +145,11 @@
      * Determine if the delivered int pixels intersect the region to
      * be extracted and pass through only that subset of pixels that
      * appear in the output region.
      * <p>
      * Note: This method is intended to be called by the
-     * <code>ImageProducer</code> of the <code>Image</code> whose
+     * {@code ImageProducer} of the {@code Image} whose
      * pixels are being filtered. Developers using
      * this class to filter pixels from an image should avoid calling
      * this method directly since that operation could interfere
      * with the filtering operation.
      */
< prev index next >