API Overview API Index Package Overview Direct link to this page
JDK 1.6
  java.awt.image.renderable. RenderContext View Source
Author(s)
Since
Version
Serial
Hierarchy
 Object
      RenderContext
Implements
 Cloneable
Subclasses
Description
public class RenderContext
  A RenderContext encapsulates the information needed to produce a specific rendering from a RenderableImage.
See also:   
Constructors
public RenderContext (AffineTransform usr2dev)
  Constructs a RenderContext with a given transform.
public RenderContext (AffineTransform usr2dev, RenderingHints hints)
  Constructs a RenderContext with a given transform and rendering hints.
public RenderContext (AffineTransform usr2dev, Shape aoi)
  Constructs a RenderContext with a given transform and area of interest.
public RenderContext (AffineTransform usr2dev, Shape aoi, RenderingHints hints)
  Constructs a RenderContext with a given transform.
Methods
Hide/Show inherited methods
public Object clone ()
  Makes a copy of a RenderContext.
public void concatenateTransform (AffineTransform modTransform)
  Modifies the current user-to-device transform by appending another transform.
@Deprecated
public void concetenateTransform (AffineTransform modTransform)
  Modifies the current user-to-device transform by appending another transform.
public Shape getAreaOfInterest ()
  Gets the ares of interest currently contained in the RenderContext.
public RenderingHints getRenderingHints ()
  Gets the rendering hints of this RenderContext.
public AffineTransform getTransform ()
  Gets the current user-to-device AffineTransform.
public void preConcatenateTransform (AffineTransform modTransform)
  Modifies the current user-to-device transform by prepending another transform.
@Deprecated
public void preConcetenateTransform (AffineTransform modTransform)
  Modifies the current user-to-device transform by prepending another transform.
public void setAreaOfInterest (Shape newAoi)
  Sets the current area of interest.
public void setRenderingHints (RenderingHints hints)
  Sets the rendering hints of this RenderContext.
public void setTransform (AffineTransform newTransform)
  Sets the current user-to-device AffineTransform contained in the RenderContext to a given transform.
Fields
Hide/Show inherited fields
pack-private Shape aoi
  The area of interest.
pack-private RenderingHints hints
  Table of hints.
pack-private AffineTransform usr2dev
Transform to convert user coordinates to device coordinates.
Nested Classes
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar