Uses of Class
java.awt.image.renderable.ParameterBlock
Package
Description
Provides classes and interfaces for producing rendering-independent images.
-
Uses of ParameterBlock in java.awt.image.renderable
Modifier and TypeMethodDescriptionParameterBlock.add(byte b)
Adds a Byte to the list of parameters.ParameterBlock.add(char c)
Adds a Character to the list of parameters.ParameterBlock.add(double d)
Adds a Double to the list of parameters.ParameterBlock.add(float f)
Adds a Float to the list of parameters.ParameterBlock.add(int i)
Adds a Integer to the list of parameters.ParameterBlock.add(long l)
Adds a Long to the list of parameters.ParameterBlock.add(short s)
Adds a Short to the list of parameters.Adds an object to the list of parameters.Adds an image to end of the list of sources.RenderableImageOp.getParameterBlock()
Returns a reference to the current parameter block.ParameterBlock.set(byte b, int index)
Replaces an Object in the list of parameters with a Byte.ParameterBlock.set(char c, int index)
Replaces an Object in the list of parameters with a Character.ParameterBlock.set(double d, int index)
Replaces an Object in the list of parameters with a Double.ParameterBlock.set(float f, int index)
Replaces an Object in the list of parameters with a Float.ParameterBlock.set(int i, int index)
Replaces an Object in the list of parameters with an Integer.ParameterBlock.set(long l, int index)
Replaces an Object in the list of parameters with a Long.ParameterBlock.set(short s, int index)
Replaces an Object in the list of parameters with a Short.Replaces an Object in the list of parameters.RenderableImageOp.setParameterBlock(ParameterBlock paramBlock)
Change the current ParameterBlock of the operation, allowing editing of image rendering chains.Replaces an entry in the list of source with a new source.Modifier and TypeMethodDescriptionContextualRenderedImageFactory.create(RenderContext renderContext, ParameterBlock paramBlock)
Creates a rendering, given a RenderContext and a ParameterBlock containing the operation's sources and parameters.RenderedImageFactory.create(ParameterBlock paramBlock, RenderingHints hints)
Creates a RenderedImage representing the results of an imaging operation (or chain of operations) for a given ParameterBlock and RenderingHints.ContextualRenderedImageFactory.getBounds2D(ParameterBlock paramBlock)
Returns the bounding box for the output of the operation, performed on a given set of sources, in rendering-independent space.ContextualRenderedImageFactory.getProperty(ParameterBlock paramBlock, String name)
Gets the appropriate instance of the property specified by the name parameter.ContextualRenderedImageFactory.mapRenderContext(int i, RenderContext renderContext, ParameterBlock paramBlock, RenderableImage image)
Maps the operation's output RenderContext into a RenderContext for each of the operation's sources.RenderableImageOp.setParameterBlock(ParameterBlock paramBlock)
Change the current ParameterBlock of the operation, allowing editing of image rendering chains.ModifierConstructorDescriptionRenderableImageOp(ContextualRenderedImageFactory CRIF, ParameterBlock paramBlock)
Constructs a RenderedImageOp given a ContextualRenderedImageFactory object, and a ParameterBlock containing RenderableImage sources and other parameters.