Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

com.memoire.bu
Class BuFilters.EnabledFilter  view BuFilters.EnabledFilter download BuFilters.EnabledFilter.java

java.lang.Object
  extended byjava.awt.image.ImageFilter
      extended byjava.awt.image.RGBImageFilter
          extended bycom.memoire.bu.BuFilters.EnabledFilter
All Implemented Interfaces:
java.lang.Cloneable, java.awt.image.ImageConsumer
Enclosing class:
BuFilters

static class BuFilters.EnabledFilter
extends java.awt.image.RGBImageFilter


Field Summary
 
Fields inherited from class java.awt.image.RGBImageFilter
canFilterIndexColorModel, newmodel, origmodel
 
Fields inherited from class java.awt.image.ImageFilter
consumer
 
Fields inherited from interface java.awt.image.ImageConsumer
COMPLETESCANLINES, IMAGEABORTED, IMAGEERROR, RANDOMPIXELORDER, SINGLEFRAME, SINGLEFRAMEDONE, SINGLEPASS, STATICIMAGEDONE, TOPDOWNLEFTRIGHT
 
Constructor Summary
protected BuFilters.EnabledFilter()
           
 
Method Summary
 int filterRGB(int _x, int _y, int _rgb)
          Filters a single pixel from the default ColorModel.
 java.lang.String toString()
          Convert this Object to a human-readable String.
 
Methods inherited from class java.awt.image.RGBImageFilter
filterIndexColorModel, filterRGBPixels, setColorModel, setPixels, setPixels, substituteColorModel
 
Methods inherited from class java.awt.image.ImageFilter
clone, getFilterInstance, imageComplete, resendTopDownLeftRight, setDimensions, setHints, setProperties
 
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

BuFilters.EnabledFilter

protected BuFilters.EnabledFilter()
Method Detail

filterRGB

public int filterRGB(int _x,
                     int _y,
                     int _rgb)
Description copied from class: java.awt.image.RGBImageFilter
Filters a single pixel from the default ColorModel.


toString

public java.lang.String toString()
Description copied from class: java.lang.Object
Convert this Object to a human-readable String. There are no limits placed on how long this String should be or what it should contain. We suggest you make it as intuitive as possible to be able to place it into System.out.println() 55 and such.

It is typical, but not required, to ensure that this method never completes abruptly with a java.lang.RuntimeException.

This method will be called when performing string concatenation with this object. If the result is null, string concatenation will instead use "null".

The default implementation returns getClass().getName() + "@" + Integer.toHexString(hashCode()).