< prev index next >
src/java.desktop/share/classes/java/awt/image/ImageConsumer.java
Print this page
@@ -65,11 +65,11 @@
* that it filters, the filter
* determines whether the
* pixels can be sent on untouched, using the original ColorModel,
* or whether the pixels should be modified (filtered) and passed
* on using a ColorModel more convenient for the filtering process.
- * @param model the specified <code>ColorModel</code>
+ * @param model the specified {@code ColorModel}
* @see ColorModel
*/
void setColorModel(ColorModel model);
/**
@@ -148,15 +148,15 @@
* area of pixels to be set
* @param y the Y coordinate of the upper-left corner of the
* area of pixels to be set
* @param w the width of the area of pixels
* @param h the height of the area of pixels
- * @param model the specified <code>ColorModel</code>
+ * @param model the specified {@code ColorModel}
* @param pixels the array of pixels
- * @param off the offset into the <code>pixels</code> array
+ * @param off the offset into the {@code pixels} array
* @param scansize the distance from one row of pixels to the next in
- * the <code>pixels</code> array
+ * the {@code pixels} array
* @see ColorModel
*/
void setPixels(int x, int y, int w, int h,
ColorModel model, byte pixels[], int off, int scansize);
@@ -174,15 +174,15 @@
* area of pixels to be set
* @param y the Y coordinate of the upper-left corner of the
* area of pixels to be set
* @param w the width of the area of pixels
* @param h the height of the area of pixels
- * @param model the specified <code>ColorModel</code>
+ * @param model the specified {@code ColorModel}
* @param pixels the array of pixels
- * @param off the offset into the <code>pixels</code> array
+ * @param off the offset into the {@code pixels} array
* @param scansize the distance from one row of pixels to the next in
- * the <code>pixels</code> array
+ * the {@code pixels} array
* @see ColorModel
*/
void setPixels(int x, int y, int w, int h,
ColorModel model, int pixels[], int off, int scansize);
< prev index next >