java.awt
Interface Composite

All Known Implementing Classes:
AlphaComposite

public interface Composite

Unsafe:


Method Summary
 CompositeContext createContext(java.awt.image.ColorModel srcColorModel, java.awt.image.ColorModel dstColorModel, RenderingHints hints)
          Enabled: Creates a context containing state that is used to perform the compositing operation.
 

Method Detail

createContext

public CompositeContext createContext(java.awt.image.ColorModel srcColorModel,
                                      java.awt.image.ColorModel dstColorModel,
                                      RenderingHints hints)
Enabled: Creates a context containing state that is used to perform the compositing operation. In a multi-threaded environment, several contexts can exist simultaneously for a single Composite object.

Parameters:
srcColorModel - the ColorModel of the source
dstColorModel - the ColorModel of the destination
hints - the hint that the context object uses to choose between rendering alternatives
Returns:
the CompositeContext object used to perform the compositing operation.


comments?