Package org.apache.fop.svg
Class GraphicsConfiguration
- java.lang.Object
-
- java.awt.GraphicsConfiguration
-
- org.apache.fop.svg.GraphicsConfiguration
-
public abstract class GraphicsConfiguration extends java.awt.GraphicsConfigurationAdapter to allow subclassing java.awt.GraphicsConfiguration without compilation errors. The version for JDK 1.4 needs to add an override for the abstract createCompatibleVolatileImage() method. It can't be overidden for JDK 1.3 because there is no VolatileImage there.
-
-
Constructor Summary
Constructors Constructor Description GraphicsConfiguration()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.awt.image.VolatileImagecreateCompatibleVolatileImage(int width, int height)java.awt.image.VolatileImagecreateCompatibleVolatileImage(int width, int height, int transparency)-
Methods inherited from class java.awt.GraphicsConfiguration
createCompatibleImage, createCompatibleImage, createCompatibleVolatileImage, createCompatibleVolatileImage, getBounds, getBufferCapabilities, getColorModel, getColorModel, getDefaultTransform, getDevice, getImageCapabilities, getNormalizingTransform, isTranslucencyCapable
-
-
-
-
Method Detail
-
createCompatibleVolatileImage
public java.awt.image.VolatileImage createCompatibleVolatileImage(int width, int height)- Overrides:
createCompatibleVolatileImagein classjava.awt.GraphicsConfiguration- Parameters:
width- of imageheight- of image- Returns:
- new volatile image
- Since:
- JDK 1.4
- See Also:
GraphicsConfiguration.createCompatibleVolatileImage(int, int)
-
createCompatibleVolatileImage
public java.awt.image.VolatileImage createCompatibleVolatileImage(int width, int height, int transparency)- Overrides:
createCompatibleVolatileImagein classjava.awt.GraphicsConfiguration- Parameters:
width- of imageheight- of imagetransparency- of image- Returns:
- new volatile image
- Since:
- JDK 1.5
- See Also:
GraphicsConfiguration.createCompatibleVolatileImage(int, int, int)
-
-