< prev index next >
src/java.desktop/share/classes/java/awt/image/CropImageFilter.java
Print this page
*** 66,80 ****
}
/**
* Passes along the properties from the source object after adding a
* property indicating the cropped region.
! * This method invokes <code>super.setProperties</code>,
* 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
* 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.
*/
--- 66,80 ----
}
/**
* Passes along the properties from the source object after adding a
* property indicating the cropped region.
! * 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} 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,98 ****
/**
* 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
* 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
--- 88,98 ----
/**
* 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} 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,115 ****
* 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
* 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.
*/
--- 105,115 ----
* 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} 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,155 ****
* 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
* 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,155 ----
* 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} 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 >