1 17 18 19 20 21 package org.apache.fop.svg; 22 23 import java.awt.image.VolatileImage ; 24 25 33 abstract public class GraphicsConfiguration extends java.awt.GraphicsConfiguration { 34 35 39 public VolatileImage createCompatibleVolatileImage(int width, int height) { 40 return null; 41 } 42 43 47 public VolatileImage createCompatibleVolatileImage(int width, int height, int transparency) { 48 return null; 49 } 50 51 } 52 | Popular Tags |