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

Quick Search    Search Deep

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

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

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


Field Summary
private  int a1_
           
private  int a2_
           
private  int b1_
           
private  int b2_
           
private  int g1_
           
private  int g2_
           
private  int r1_
           
private  int r2_
           
 
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.AntialiasFilter()
           
 
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
 

Field Detail

a1_

private int a1_

r1_

private int r1_

g1_

private int g1_

b1_

private int b1_

a2_

private int a2_

r2_

private int r2_

g2_

private int g2_

b2_

private int b2_
Constructor Detail

BuFilters.AntialiasFilter

protected BuFilters.AntialiasFilter()
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()).