home *** CD-ROM | disk | FTP | other *** search
- import java.awt.*;
- import java.awt.image.*;
-
- public class \Name\ extends java.awt.Graphics
- {
- public \Name\ ()
- {
- super ();
- }
- public Graphics create()
- {
- //Add your code here
- return null;
- }
- public void translate (int x, int y)
- {
- //Add your code here
- }
- public Color getColor()
- {
- //Add your code here
- return null;
- }
- public void setColor(Color c)
- {
- //Add your code here
- }
- public void setPaintMode()
- {
- //Add your code here
- }
- public void setXORMode(Color c1)
- {
- //Add your code here
- }
- public Font getFont()
- {
- //Add your code here
- return null;
- }
- public void setFont(Font font)
- {
- //Add your code here
- }
- public FontMetrics getFontMetrics(Font f)
- {
- //Add your code here
- return null;
- }
- public Rectangle getClipRect()
- {
- //Add your code here
- return null;
- }
- public void clipRect(int x, int y, int width, int height)
- {
- //Add your code here
- }
- public void copyArea(int x, int y, int width, int height, int dx, int dy)
- {
- //Add your code here
- }
- public void drawLine(int x1, int y1, int x2, int y2)
- {
- //Add your code here
- }
- public void fillRect(int x, int y, int width, int height)
- {
- //Add your code here
- }
- public void clearRect(int x, int y, int width, int height)
- {
- //Add your code here
- }
- public void drawRoundRect(int x, int y, int width, int height, int arcWidth, int arcHeight)
- {
- //Add your code here
- }
- public void fillRoundRect(int x, int y, int width, int height, int arcWidth, int arcHeight)
- {
- //Add your code here
- }
- public void drawOval(int x, int y, int width, int height)
- {
- //Add your code here
- }
- public void fillOval(int x, int y, int width, int height)
- {
- //Add your code here
- }
- public void drawArc(int x, int y, int width, int height, int startAngle, int arcAngle)
- {
- //Add your code here
- }
- public void fillArc(int x, int y, int width, int height, int startAngle, int arcAngle)
- {
- //Add your code here
- }
- public void drawPolygon(int xPoints[], int yPoints[], int nPoints)
- {
- //Add your code here
- }
- public void fillPolygon(int xPoints[], int yPoints[], int nPoints)
- {
- //Add your code here
- }
- public void drawString(String str, int x, int y)
- {
- //Add your code here
- }
- public boolean drawImage(Image img, int x, int y, ImageObserver observer)
- {
- //Add your code here
- return false;
- }
- public boolean drawImage(Image img, int x, int y, int width, int height, ImageObserver observer)
- {
- //Add your code here
- return false;
- }
- public boolean drawImage(Image img, int x, int y, Color bgcolor, ImageObserver observer)
- {
- //Add your code here
- return false;
- }
- public boolean drawImage(Image img, int x, int y, int width, int height, Color bgcolor, ImageObserver observer)
- {
- //Add your code here
- return false;
- }
- public void dispose()
- {
- //Add your code here
- }
- }
-