Contents | Package | Class | Tree | Deprecated | Index | Help Java 1.2 Beta 3
PREV | NEXT SHOW LISTS | HIDE LISTS

Interface java.awt.CompositeContext


public interface CompositeContext
This interface defines the encapsulated and optimized environment for a compositing operation. CompositeContext objects maintain state for compositing operations. In a multi-threaded environment, several contexts may exist simultaneously for a single Composite object.

See Also:
Composite

Method Summary
void  compose(Raster src1, Raster src2, WritableRaster dst)
This method composes the two source rasters and places the result in the destination raster.
void  dispose()
Release resources allocated for context.
 

Method Detail

dispose

public void dispose()
Release resources allocated for context.

compose

public void compose(Raster src1,
                    Raster src2,
                    WritableRaster dst)
This method composes the two source rasters and places the result in the destination raster. Note that the destination can be the same object as either the first or second source.
Parameters:
src1 - The first source for the compositing operation.
src2 - The second source for the compositing operation.
dst - The tile where the result of the operation is stored.

Contents | Package | Class | Tree | Deprecated | Index | Help Java 1.2 Beta 3
PREV | NEXT SHOW LISTS | HIDE LISTS

Submit a bug or feature
Submit comments/suggestions about new javadoc look.
Java is a trademark or registered trademark of Sun Microsystems, Inc. in the US and other countries.
Copyright 1993-1998 Sun Microsystems, Inc. 901 San Antonio Road, Palo Alto, California, 94303, U.S.A. All Rights Reserved.