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

Quick Search    Search Deep

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

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

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


Field Summary
private  int a1_
           
private  int a2_
           
private  int a3_
           
private  int h1_
           
private  int h2_
           
private  int h3_
           
private  int var
           
 
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.EmbossFilter()
           
 
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_

h1_

private int h1_

a2_

private int a2_

h2_

private int h2_

a3_

private int a3_

h3_

private int h3_

var

private int var
Constructor Detail

BuFilters.EmbossFilter

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