| javax.media.jai.RenderableCollectionImageFactory
All known Subclasses: ca.forklabs.media.jai.opimage.PipelineRCIF, ca.forklabs.media.jai.opimage.PeriodicShift3DRCIF, ca.forklabs.media.jai.opimage.ApplyToCollectionRCIF,
RenderableCollectionImageFactory | public interface RenderableCollectionImageFactory (Code) | | The RenderableCollectionImageFactory (RCIF) interface
is intended to be implemented by classes that wish to act as factories
to produce different collection image operators. In JAI, the
create() method defined by this interface will be
invoked in a chain of CollectionOp s when the operation is
being executed in renderable mode. The images contained in the
generated CollectionImage would be expected to be
RenderableImage s.
since: JAI 1.1 |
Method Summary | |
CollectionImage | create(ParameterBlock parameters) Creates a CollectionImage that represents the
result of an operation (or chain of operations) for a given
ParameterBlock .
If the operation is unable to handle the input arguments, this
method should return null .
Generally this method is expected to be invoked by an operation
being executed in renderable mode. |
create | CollectionImage create(ParameterBlock parameters)(Code) | | Creates a CollectionImage that represents the
result of an operation (or chain of operations) for a given
ParameterBlock .
If the operation is unable to handle the input arguments, this
method should return null .
Generally this method is expected to be invoked by an operation
being executed in renderable mode. Therefore the images contained
in the generated CollectionImage would be expected to
be RenderableImage s.
Parameters: args - Input arguments to the operation, includingsources and/or parameters. A CollectionImage containing the desired output. |
|
|