Generated by
JDiff

Class java.awt.image.RGBImageFilter

Documentation changed from old to new.

Changed Methods
void setColorModel(ColorModel) Documentation changed from old to new.
If the ColorModel is an IndexColorModel and the subclass has set the canFilterIndexColorModel flag to true we substitute a filtered version of the color model here and wherever that original ColorModel object appears in the setPixels methods.
void setPixels(int, int, int, int, ColorModel, byte[], int, int) Documentation changed from old to new.
If the ColorModel object is the same one that has already been converted then simply passes the pixels through with the converted ColorModel.
void setPixels(int, int, int, int, ColorModel, int[], int, int) Documentation changed from old to new.
If the ColorModel object is the same one that has already been converted then simply passes the pixels through with the converted ColorModel otherwise converts the buffer of integer pixels to the default RGB ColorModel and passes the converted buffer to the filterRGBPixels method to be converted one by one.
 

Changed Fields
ColorModel newmodel Documentation changed from old to new.
The ColorModel with which to replace origmodel when the user calls substituteColorModel.
ColorModel origmodel Documentation changed from old to new.
The ColorModel to be replaced by newmodel when the user calls ColorModel substituteColorModel}.