org.apache.fop.svg

Class GraphicsConfiguration


public abstract class GraphicsConfiguration
extends java.awt.GraphicsConfiguration

Adapter 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.

Method Summary

VolatileImage
createCompatibleVolatileImage(int width, int height)
VolatileImage
createCompatibleVolatileImage(int width, int height, int transparency)

Method Details

createCompatibleVolatileImage

public VolatileImage createCompatibleVolatileImage(int width,
                                                   int height)
Since:
JDK 1.4
See Also:
java.awt.GraphicsConfiguration.createCompatibleVolatileImage(int, int)

createCompatibleVolatileImage

public VolatileImage createCompatibleVolatileImage(int width,
                                                   int height,
                                                   int transparency)
Since:
JDK 1.5
See Also:
java.awt.GraphicsConfiguration.createCompatibleVolatileImage(int, int, int)

Copyright 1999-2007 The Apache Software Foundation. All Rights Reserved.