API Overview API Index Package Overview Direct link to this page
JDK 1.6
  java.awt. GraphicsConfiguration View Source
Author(s)
Since
Version
Serial
Hierarchy
 Object
      GraphicsConfiguration
Implements
Subclasses
Description
publicabstract abstract class GraphicsConfiguration
  The GraphicsConfiguration class describes the characteristics of a graphics destination such as a printer or monitor.
Constructors
protected GraphicsConfiguration ()
  This is an abstract class that cannot be instantiated directly.
Methods
Hide/Show inherited methods
publicabstract BufferedImage createCompatibleImage (int width, int height)
  Returns a BufferedImage with a data layout and color model compatible with this GraphicsConfiguration.
public BufferedImage createCompatibleImage (int width, int height, int transparency)
  Returns a BufferedImage that supports the specified transparency and has a data layout and color model compatible with this GraphicsConfiguration.
public VolatileImage createCompatibleVolatileImage (int width, int height)
  Returns a VolatileImage with a data layout and color model compatible with this GraphicsConfiguration.
public VolatileImage createCompatibleVolatileImage (int width, int height, ImageCapabilities caps) throws AWTException
  Returns a VolatileImage with a data layout and color model compatible with this GraphicsConfiguration, using the specified image capabilities.
public VolatileImage createCompatibleVolatileImage (int width, int height, ImageCapabilities caps, int transparency) throws AWTException
  Returns a VolatileImage with a data layout and color model compatible with this GraphicsConfiguration, using the specified image capabilities and transparency value.
public VolatileImage createCompatibleVolatileImage (int width, int height, int transparency)
  Returns a VolatileImage with a data layout and color model compatible with this GraphicsConfiguration.
publicabstract Rectangle getBounds ()
  Returns the bounds of the GraphicsConfiguration in the device coordinates.
public BufferCapabilities getBufferCapabilities ()
  Returns the buffering capabilities of this GraphicsConfiguration.
publicabstract ColorModel getColorModel ()
  Returns the ColorModel associated with this GraphicsConfiguration.
publicabstract ColorModel getColorModel (int transparency)
  Returns the ColorModel associated with this GraphicsConfiguration that supports the specified transparency.
publicabstract AffineTransform getDefaultTransform ()
  Returns the default AffineTransform for this GraphicsConfiguration.
publicabstract GraphicsDevice getDevice ()
  Returns the GraphicsDevice associated with this GraphicsConfiguration.
public ImageCapabilities getImageCapabilities ()
  Returns the image capabilities of this GraphicsConfiguration.
publicabstract AffineTransform getNormalizingTransform ()
  Returns a AffineTransform that can be concatenated with the default AffineTransform of a GraphicsConfiguration so that 72 units in user space equals 1 inch in device space.
Fields
Hide/Show inherited fields
Nested Classes
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar