FileDocCategorySizeDatePackage
DummyGraphics2d.javaAPI DocApache Poi 3.0.126547Mon Jan 01 12:39:36 GMT 2007org.apache.poi.hssf.usermodel

DummyGraphics2d

public class DummyGraphics2d extends Graphics2D

Fields Summary
BufferedImage
img
private Graphics2D
g2D
Constructors Summary
public DummyGraphics2d()

        img = new BufferedImage(1000, 1000, 2);
        g2D = (Graphics2D)img.getGraphics();
    
Methods Summary
public voidaddRenderingHints(java.util.Map hints)

        System.out.println( "addRenderingHinds(Map):" );
        System.out.println( "  hints = " + hints );
        g2D.addRenderingHints( hints );
    
public voidclearRect(int x, int y, int width, int height)

        System.out.println( "clearRect(int,int,int,int):" );
        System.out.println( "x = " + x );
        System.out.println( "y = " + y );
        System.out.println( "width = " + width );
        System.out.println( "height = " + height );
        g2D.clearRect( x, y, width, height );
    
public voidclip(java.awt.Shape s)

        System.out.println( "clip(Shape):" );
        System.out.println( "  s = " + s );
        g2D.clip( s );
    
public voidclipRect(int x, int y, int width, int height)

        System.out.println( "clipRect(int, int, int, int):" );
        System.out.println( "x = " + x );
        System.out.println( "y = " + y );
        System.out.println( "width = " + width );
        System.out.println( "height = " + height );
        g2D.clipRect( x, y, width, height );
    
public voidcopyArea(int x, int y, int width, int height, int dx, int dy)

        System.out.println( "copyArea(int,int,int,int):" );
        System.out.println( "x = " + x );
        System.out.println( "y = " + y );
        System.out.println( "width = " + width );
        System.out.println( "height = " + height );
        g2D.copyArea( x, y, width, height, dx, dy );
    
public java.awt.Graphicscreate()

        System.out.println( "create():" );
        return g2D.create();
    
public java.awt.Graphicscreate(int x, int y, int width, int height)

        System.out.println( "create(int,int,int,int):" );
        System.out.println( "x = " + x );
        System.out.println( "y = " + y );
        System.out.println( "width = " + width );
        System.out.println( "height = " + height );
        return g2D.create( x, y, width, height );
    
public voiddispose()

        System.out.println( "dispose():" );
        g2D.dispose();
    
public voiddraw(java.awt.Shape s)

        System.out.println( "draw(Shape):" );
        System.out.println( "s = " + s );
        g2D.draw( s );
    
public voiddraw3DRect(int x, int y, int width, int height, boolean raised)

        System.out.println( "draw3DRect(int,int,int,int,boolean):" );
        System.out.println( "x = " + x );
        System.out.println( "y = " + y );
        System.out.println( "width = " + width );
        System.out.println( "height = " + height );
        System.out.println( "raised = " + raised );
        g2D.draw3DRect( x, y, width, height, raised );
    
public voiddrawArc(int x, int y, int width, int height, int startAngle, int arcAngle)

        System.out.println( "drawArc(int,int,int,int,int,int):" );
        System.out.println( "x = " + x );
        System.out.println( "y = " + y );
        System.out.println( "width = " + width );
        System.out.println( "height = " + height );
        System.out.println( "startAngle = " + startAngle );
        System.out.println( "arcAngle = " + arcAngle );
        g2D.drawArc( x, y, width, height, startAngle, arcAngle );
    
public voiddrawBytes(byte[] data, int offset, int length, int x, int y)

        System.out.println( "drawBytes(byte[],int,int,int,int):" );
        System.out.println( "data = " + data );
        System.out.println( "offset = " + offset );
        System.out.println( "length = " + length );
        System.out.println( "x = " + x );
        System.out.println( "y = " + y );
        g2D.drawBytes( data, offset, length, x, y );
    
public voiddrawChars(char[] data, int offset, int length, int x, int y)

        System.out.println( "drawChars(data,int,int,int,int):" );
        System.out.println( "data = " + data.toString() );
        System.out.println( "offset = " + offset );
        System.out.println( "length = " + length );
        System.out.println( "x = " + x );
        System.out.println( "y = " + y );
        g2D.drawChars( data, offset, length, x, y );
    
public voiddrawGlyphVector(java.awt.font.GlyphVector g, float x, float y)

        System.out.println( "drawGlyphVector(GlyphVector, float, float):" );
        System.out.println( "g = " + g );
        System.out.println( "x = " + x );
        System.out.println( "y = " + y );
        g2D.drawGlyphVector( g, x, y );
    
public booleandrawImage(java.awt.Image img, int dx1, int dy1, int dx2, int dy2, int sx1, int sy1, int sx2, int sy2, java.awt.image.ImageObserver observer)

        System.out.println( "drawImage(Image,int,int,int,int,int,int,int,int,ImageObserver):" );
        System.out.println( "img = " + img );
        System.out.println( "dx1 = " + dx1 );
        System.out.println( "dy1 = " + dy1 );
        System.out.println( "dx2 = " + dx2 );
        System.out.println( "dy2 = " + dy2 );
        System.out.println( "sx1 = " + sx1 );
        System.out.println( "sy1 = " + sy1 );
        System.out.println( "sx2 = " + sx2 );
        System.out.println( "sy2 = " + sy2 );
        System.out.println( "observer = " + observer );
        return g2D.drawImage( img, dx1, dy1, dx2, dy2, sx1, sy1, sx2, sy2, observer );
    
public booleandrawImage(java.awt.Image img, int dx1, int dy1, int dx2, int dy2, int sx1, int sy1, int sx2, int sy2, java.awt.Color bgcolor, java.awt.image.ImageObserver observer)

        System.out.println( "drawImage(Image,int,int,int,int,int,int,int,int,Color,ImageObserver):" );
        System.out.println( "img = " + img );
        System.out.println( "dx1 = " + dx1 );
        System.out.println( "dy1 = " + dy1 );
        System.out.println( "dx2 = " + dx2 );
        System.out.println( "dy2 = " + dy2 );
        System.out.println( "sx1 = " + sx1 );
        System.out.println( "sy1 = " + sy1 );
        System.out.println( "sx2 = " + sx2 );
        System.out.println( "sy2 = " + sy2 );
        System.out.println( "bgcolor = " + bgcolor );
        System.out.println( "observer = " + observer );
        return g2D.drawImage( img, dx1, dy1, dx2, dy2, sx1, sy1, sx2, sy2, bgcolor, observer );
    
public booleandrawImage(java.awt.Image img, int x, int y, java.awt.Color bgcolor, java.awt.image.ImageObserver observer)

        System.out.println( "drawImage(Image,int,int,Color,ImageObserver):" );
        System.out.println( "img = " + img );
        System.out.println( "x = " + x );
        System.out.println( "y = " + y );
        System.out.println( "bgcolor = " + bgcolor );
        System.out.println( "observer = " + observer );
        return g2D.drawImage( img, x, y, bgcolor, observer );
    
public booleandrawImage(java.awt.Image img, int x, int y, java.awt.image.ImageObserver observer)

        System.out.println( "drawImage(Image,int,int,observer):" );
        System.out.println( "img = " + img );
        System.out.println( "x = " + x );
        System.out.println( "y = " + y );
        System.out.println( "observer = " + observer );
        return g2D.drawImage( img, x, y, observer );
    
public booleandrawImage(java.awt.Image img, int x, int y, int width, int height, java.awt.Color bgcolor, java.awt.image.ImageObserver observer)

        System.out.println( "drawImage(Image,int,int,int,int,Color,ImageObserver):" );
        System.out.println( "img = " + img );
        System.out.println( "x = " + x );
        System.out.println( "y = " + y );
        System.out.println( "width = " + width );
        System.out.println( "height = " + height );
        System.out.println( "bgcolor = " + bgcolor );
        System.out.println( "observer = " + observer );
        return g2D.drawImage( img, x, y, width, height, bgcolor, observer );
    
public booleandrawImage(java.awt.Image img, int x, int y, int width, int height, java.awt.image.ImageObserver observer)

        System.out.println( "drawImage(Image,int,int,width,height,observer):" );
        System.out.println( "img = " + img );
        System.out.println( "x = " + x );
        System.out.println( "y = " + y );
        System.out.println( "width = " + width );
        System.out.println( "height = " + height );
        System.out.println( "observer = " + observer );
        return g2D.drawImage( img, x, y, width, height, observer );
    
public voiddrawImage(java.awt.image.BufferedImage img, java.awt.image.BufferedImageOp op, int x, int y)

        System.out.println( "drawImage(BufferedImage, BufferedImageOp, x, y):" );
        System.out.println( "img = " + img );
        System.out.println( "op = " + op );
        System.out.println( "x = " + x );
        System.out.println( "y = " + y );
        g2D.drawImage( img, op, x, y );
    
public booleandrawImage(java.awt.Image img, java.awt.geom.AffineTransform xform, java.awt.image.ImageObserver obs)

        System.out.println( "drawImage(Image,AfflineTransform,ImageObserver):" );
        System.out.println( "img = " + img );
        System.out.println( "xform = " + xform );
        System.out.println( "obs = " + obs );
        return g2D.drawImage( img, xform, obs );
    
public voiddrawLine(int x1, int y1, int x2, int y2)

        System.out.println( "drawLine(int,int,int,int):" );
        System.out.println( "x1 = " + x1 );
        System.out.println( "y1 = " + y1 );
        System.out.println( "x2 = " + x2 );
        System.out.println( "y2 = " + y2 );
        g2D.drawLine( x1, y1, x2, y2 );
    
public voiddrawOval(int x, int y, int width, int height)

        System.out.println( "drawOval(int,int,int,int):" );
        System.out.println( "x = " + x );
        System.out.println( "y = " + y );
        System.out.println( "width = " + width );
        System.out.println( "height = " + height );
        g2D.drawOval( x, y, width, height );
    
public voiddrawPolygon(java.awt.Polygon p)

        System.out.println( "drawPolygon(Polygon):" );
        System.out.println( "p = " + p );
        g2D.drawPolygon( p );
    
public voiddrawPolygon(int[] xPoints, int[] yPoints, int nPoints)

        System.out.println( "drawPolygon(int[],int[],int):" );
        System.out.println( "xPoints = " + xPoints );
        System.out.println( "yPoints = " + yPoints );
        System.out.println( "nPoints = " + nPoints );
        g2D.drawPolygon( xPoints, yPoints, nPoints );
    
public voiddrawPolyline(int[] xPoints, int[] yPoints, int nPoints)

        System.out.println( "drawPolyline(int[],int[],int):" );
        System.out.println( "xPoints = " + xPoints );
        System.out.println( "yPoints = " + yPoints );
        System.out.println( "nPoints = " + nPoints );
        g2D.drawPolyline( xPoints, yPoints, nPoints );
    
public voiddrawRect(int x, int y, int width, int height)

        System.out.println( "drawRect(int,int,int,int):" );
        System.out.println( "x = " + x );
        System.out.println( "y = " + y );
        System.out.println( "width = " + width );
        System.out.println( "height = " + height );
        g2D.drawRect( x, y, width, height );
    
public voiddrawRenderableImage(java.awt.image.renderable.RenderableImage img, java.awt.geom.AffineTransform xform)

        System.out.println( "drawRenderableImage(RenderableImage, AfflineTransform):" );
        System.out.println( "img = " + img );
        System.out.println( "xform = " + xform );
        g2D.drawRenderableImage( img, xform );
    
public voiddrawRenderedImage(java.awt.image.RenderedImage img, java.awt.geom.AffineTransform xform)

        System.out.println( "drawRenderedImage(RenderedImage, AffineTransform):" );
        System.out.println( "img = " + img );
        System.out.println( "xform = " + xform );
        g2D.drawRenderedImage( img, xform );
    
public voiddrawRoundRect(int x, int y, int width, int height, int arcWidth, int arcHeight)

        System.out.println( "drawRoundRect(int,int,int,int,int,int):" );
        System.out.println( "x = " + x );
        System.out.println( "y = " + y );
        System.out.println( "width = " + width );
        System.out.println( "height = " + height );
        System.out.println( "arcWidth = " + arcWidth );
        System.out.println( "arcHeight = " + arcHeight );
        g2D.drawRoundRect( x, y, width, height, arcWidth, arcHeight );
    
public voiddrawString(java.text.AttributedCharacterIterator iterator, float x, float y)

        System.out.println( "drawString(AttributedCharacterIterator):" );
        System.out.println( "iterator = " + iterator );
        System.out.println( "x = " + x );
        System.out.println( "y = " + y );
        g2D.drawString( iterator, x, y );
    
public voiddrawString(java.lang.String s, float x, float y)

        System.out.println( "drawString(s,x,y):" );
        System.out.println( "s = " + s );
        System.out.println( "x = " + x );
        System.out.println( "y = " + y );
        g2D.drawString( s, x, y );
    
public voiddrawString(java.text.AttributedCharacterIterator iterator, int x, int y)

        System.out.println( "drawString(AttributedCharacterIterator,int,int):" );
        System.out.println( "iterator = " + iterator );
        System.out.println( "x = " + x );
        System.out.println( "y = " + y );
        g2D.drawString( iterator, x, y );
    
public voiddrawString(java.lang.String str, int x, int y)

        System.out.println( "drawString(str,int,int):" );
        System.out.println( "str = " + str );
        System.out.println( "x = " + x );
        System.out.println( "y = " + y );
        g2D.drawString( str, x, y );
    
public voidfill(java.awt.Shape s)

        System.out.println( "fill(Shape):" );
        System.out.println( "s = " + s );
        g2D.fill( s );
    
public voidfill3DRect(int x, int y, int width, int height, boolean raised)

        System.out.println( "fill3DRect(int,int,int,int,boolean):" );
        System.out.println( "x = " + x );
        System.out.println( "y = " + y );
        System.out.println( "width = " + width );
        System.out.println( "height = " + height );
        System.out.println( "raised = " + raised );
        g2D.fill3DRect( x, y, width, height, raised );
    
public voidfillArc(int x, int y, int width, int height, int startAngle, int arcAngle)

        System.out.println( "fillArc(int,int,int,int,int,int):" );
        System.out.println( "x = " + x );
        System.out.println( "y = " + y );
        System.out.println( "width = " + width );
        System.out.println( "height = " + height );
        System.out.println( "startAngle = " + startAngle );
        System.out.println( "arcAngle = " + arcAngle );
        g2D.fillArc( x, y, width, height, startAngle, arcAngle );
    
public voidfillOval(int x, int y, int width, int height)

        System.out.println( "fillOval(int,int,int,int):" );
        System.out.println( "x = " + x );
        System.out.println( "y = " + y );
        System.out.println( "width = " + width );
        System.out.println( "height = " + height );
        g2D.fillOval( x, y, width, height );
    
public voidfillPolygon(java.awt.Polygon p)

        System.out.println( "fillPolygon(Polygon):" );
        System.out.println( "p = " + p );
        g2D.fillPolygon( p );
    
public voidfillPolygon(int[] xPoints, int[] yPoints, int nPoints)

        System.out.println( "fillPolygon(int[],int[],int):" );
        System.out.println( "xPoints = " + xPoints );
        System.out.println( "yPoints = " + yPoints );
        System.out.println( "nPoints = " + nPoints );
        g2D.fillPolygon( xPoints, yPoints, nPoints );
    
public voidfillRect(int x, int y, int width, int height)

        System.out.println( "fillRect(int,int,int,int):" );
        System.out.println( "x = " + x );
        System.out.println( "y = " + y );
        System.out.println( "width = " + width );
        System.out.println( "height = " + height );
        g2D.fillRect( x, y, width, height );
    
public voidfillRoundRect(int x, int y, int width, int height, int arcWidth, int arcHeight)

        System.out.println( "fillRoundRect(int,int,int,int,int,int):" );
        System.out.println( "x = " + x );
        System.out.println( "y = " + y );
        System.out.println( "width = " + width );
        System.out.println( "height = " + height );
        g2D.fillRoundRect( x, y, width, height, arcWidth, arcHeight );
    
public voidfinalize()

        System.out.println( "finalize():" );
        g2D.finalize();
    
public java.awt.ColorgetBackground()

        System.out.println( "getBackground():" );
        return g2D.getBackground();
    
public java.awt.ShapegetClip()

        System.out.println( "getClip():" );
        return g2D.getClip();
    
public java.awt.RectanglegetClipBounds()

        System.out.println( "getClipBounds():" );
        return g2D.getClipBounds();
    
public java.awt.RectanglegetClipBounds(java.awt.Rectangle r)

        System.out.println( "getClipBounds(Rectangle):" );
        System.out.println( "r = " + r );
        return g2D.getClipBounds( r );
    
public java.awt.RectanglegetClipRect()

        System.out.println( "getClipRect():" );
        return g2D.getClipRect();
    
public java.awt.ColorgetColor()

        System.out.println( "getColor():" );
        return g2D.getColor();
    
public java.awt.CompositegetComposite()

        System.out.println( "getComposite():" );
        return g2D.getComposite();
    
public java.awt.GraphicsConfigurationgetDeviceConfiguration()

        System.out.println( "getDeviceConfiguration():" );
        return g2D.getDeviceConfiguration();
    
public java.awt.FontgetFont()

        System.out.println( "getFont():" );
        return g2D.getFont();
    
public java.awt.FontMetricsgetFontMetrics()

        System.out.println( "getFontMetrics():" );
        return g2D.getFontMetrics();
    
public java.awt.FontMetricsgetFontMetrics(java.awt.Font f)

        System.out.println( "getFontMetrics():" );
        return g2D.getFontMetrics( f );
    
public java.awt.font.FontRenderContextgetFontRenderContext()

        System.out.println( "getFontRenderContext():" );
        return g2D.getFontRenderContext();
    
public java.awt.PaintgetPaint()

        System.out.println( "getPaint():" );
        return g2D.getPaint();
    
public java.lang.ObjectgetRenderingHint(java.awt.RenderingHints$Key hintKey)

        System.out.println( "getRenderingHint(RenderingHints.Key):" );
        System.out.println( "hintKey = " + hintKey );
        return g2D.getRenderingHint( hintKey );
    
public java.awt.RenderingHintsgetRenderingHints()

        System.out.println( "getRenderingHints():" );
        return g2D.getRenderingHints();
    
public java.awt.StrokegetStroke()

        System.out.println( "getStroke():" );
        return g2D.getStroke();
    
public java.awt.geom.AffineTransformgetTransform()

        System.out.println( "getTransform():" );
        return g2D.getTransform();
    
public booleanhit(java.awt.Rectangle rect, java.awt.Shape s, boolean onStroke)

        System.out.println( "hit(Rectangle, Shape, onStroke):" );
        System.out.println( "rect = " + rect );
        System.out.println( "s = " + s );
        System.out.println( "onStroke = " + onStroke );
        return g2D.hit( rect, s, onStroke );
    
public booleanhitClip(int x, int y, int width, int height)

        System.out.println( "hitClip(int,int,int,int):" );
        System.out.println( "x = " + x );
        System.out.println( "y = " + y );
        System.out.println( "width = " + width );
        System.out.println( "height = " + height );
        return g2D.hitClip( x, y, width, height );
    
public voidrotate(double theta)

        System.out.println( "rotate(theta):" );
        System.out.println( "theta = " + theta );
        g2D.rotate( theta );
    
public voidrotate(double theta, double x, double y)

        System.out.println( "rotate(double,double,double):" );
        System.out.println( "theta = " + theta );
        System.out.println( "x = " + x );
        System.out.println( "y = " + y );
        g2D.rotate( theta, x, y );
    
public voidscale(double sx, double sy)

        System.out.println( "scale(double,double):" );
        System.out.println( "sx = " + sx );
        System.out.println( "sy" );
        g2D.scale( sx, sy );
    
public voidsetBackground(java.awt.Color color)

        System.out.println( "setBackground(Color):" );
        System.out.println( "color = " + color );
        g2D.setBackground( color );
    
public voidsetClip(java.awt.Shape clip)

        System.out.println( "setClip(Shape):" );
        System.out.println( "clip = " + clip );
        g2D.setClip( clip );
    
public voidsetClip(int x, int y, int width, int height)

        System.out.println( "setClip(int,int,int,int):" );
        System.out.println( "x = " + x );
        System.out.println( "y = " + y );
        System.out.println( "width = " + width );
        System.out.println( "height = " + height );
        g2D.setClip( x, y, width, height );
    
public voidsetColor(java.awt.Color c)

        System.out.println( "setColor():" );
        System.out.println( "c = " + c );
        g2D.setColor( c );
    
public voidsetComposite(java.awt.Composite comp)

        System.out.println( "setComposite(Composite):" );
        System.out.println( "comp = " + comp );
        g2D.setComposite( comp );
    
public voidsetFont(java.awt.Font font)

        System.out.println( "setFont(Font):" );
        System.out.println( "font = " + font );
        g2D.setFont( font );
    
public voidsetPaint(java.awt.Paint paint)

        System.out.println( "setPain(Paint):" );
        System.out.println( "paint = " + paint );
        g2D.setPaint( paint );
    
public voidsetPaintMode()

        System.out.println( "setPaintMode():" );
        g2D.setPaintMode();
    
public voidsetRenderingHint(java.awt.RenderingHints$Key hintKey, java.lang.Object hintValue)

        System.out.println( "setRenderingHint(RenderingHints.Key, Object):" );
        System.out.println( "hintKey = " + hintKey );
        System.out.println( "hintValue = " + hintValue );
        g2D.setRenderingHint( hintKey, hintValue );
    
public voidsetRenderingHints(java.util.Map hints)

        System.out.println( "setRenderingHints(Map):" );
        System.out.println( "hints = " + hints );
        g2D.setRenderingHints( hints );
    
public voidsetStroke(java.awt.Stroke s)

        System.out.println( "setStroke(Stoke):" );
        System.out.println( "s = " + s );
        g2D.setStroke( s );
    
public voidsetTransform(java.awt.geom.AffineTransform Tx)

        System.out.println( "setTransform():" );
        System.out.println( "Tx = " + Tx );
        g2D.setTransform( Tx );
    
public voidsetXORMode(java.awt.Color c1)

        System.out.println( "setXORMode(Color):" );
        System.out.println( "c1 = " + c1 );
        g2D.setXORMode( c1 );
    
public voidshear(double shx, double shy)

        System.out.println( "shear(shx, dhy):" );
        System.out.println( "shx = " + shx );
        System.out.println( "shy = " + shy );
        g2D.shear( shx, shy );
    
public java.lang.StringtoString()

        System.out.println( "toString():" );
        return g2D.toString();
    
public voidtransform(java.awt.geom.AffineTransform Tx)

        System.out.println( "transform(AffineTransform):" );
        System.out.println( "Tx = " + Tx );
        g2D.transform( Tx );
    
public voidtranslate(double tx, double ty)

        System.out.println( "translate(double, double):" );
        System.out.println( "tx = " + tx );
        System.out.println( "ty = " + ty );
        g2D.translate( tx, ty );
    
public voidtranslate(int x, int y)

        System.out.println( "translate(int,int):" );
        System.out.println( "x = " + x );
        System.out.println( "y = " + y );
        g2D.translate( x, y );