home *** CD-ROM | disk | FTP | other *** search
/ Internet Gallery / INTERGAL.bin / intergal / prgs / idv21 / data.z / Graphics.pre < prev    next >
Text File  |  1995-10-08  |  3KB  |  136 lines

  1. import java.awt.*;
  2. import java.awt.image.*;
  3.  
  4. public class \Name\ extends java.awt.Graphics
  5.    {
  6.    public \Name\ ()
  7.       {
  8.       super ();
  9.       }
  10.    public Graphics create()
  11.       {
  12.       //Add your code here
  13.       return null;
  14.       }
  15.    public void translate (int x, int y)
  16.       {
  17.       //Add your code here
  18.       }
  19.    public Color getColor()
  20.       {
  21.       //Add your code here
  22.       return null;
  23.       }
  24.    public void setColor(Color c)
  25.       {
  26.       //Add your code here
  27.       }
  28.    public void setPaintMode()
  29.       {
  30.       //Add your code here
  31.       }
  32.    public void setXORMode(Color c1)
  33.       {
  34.       //Add your code here
  35.       }
  36.    public Font getFont()
  37.       {
  38.       //Add your code here
  39.       return null;
  40.       }
  41.    public void setFont(Font font)
  42.       {
  43.       //Add your code here
  44.       }
  45.    public FontMetrics getFontMetrics(Font f)
  46.       {
  47.       //Add your code here
  48.       return null;
  49.       }
  50.    public Rectangle getClipRect()
  51.       {
  52.       //Add your code here
  53.       return null;
  54.       }
  55.    public void clipRect(int x, int y, int width, int height)
  56.       {
  57.       //Add your code here
  58.       }
  59.    public void copyArea(int x, int y, int width, int height, int dx, int dy)
  60.       {
  61.       //Add your code here
  62.       }
  63.    public void drawLine(int x1, int y1, int x2, int y2)
  64.       {
  65.       //Add your code here
  66.       }
  67.    public void fillRect(int x, int y, int width, int height)
  68.       {
  69.       //Add your code here
  70.       }
  71.    public void clearRect(int x, int y, int width, int height)
  72.       {
  73.       //Add your code here
  74.       }
  75.    public void drawRoundRect(int x, int y, int width, int height, int arcWidth, int arcHeight)
  76.       {
  77.       //Add your code here
  78.       }
  79.    public void fillRoundRect(int x, int y, int width, int height, int arcWidth, int arcHeight)
  80.       {
  81.       //Add your code here
  82.       }
  83.    public void drawOval(int x, int y, int width, int height)
  84.       {
  85.       //Add your code here
  86.       }
  87.    public void fillOval(int x, int y, int width, int height)
  88.       {
  89.       //Add your code here
  90.       }
  91.    public void drawArc(int x, int y, int width, int height, int startAngle, int arcAngle)
  92.       {
  93.       //Add your code here
  94.       }
  95.    public void fillArc(int x, int y, int width, int height, int startAngle, int arcAngle)
  96.       {
  97.       //Add your code here
  98.       }
  99.    public void drawPolygon(int xPoints[], int yPoints[], int nPoints)
  100.       {
  101.       //Add your code here
  102.       }
  103.    public void fillPolygon(int xPoints[], int yPoints[], int nPoints)
  104.       {
  105.       //Add your code here
  106.       }
  107.    public void drawString(String str, int x, int y)
  108.       {
  109.       //Add your code here
  110.       }
  111.    public boolean drawImage(Image img, int x, int y, ImageObserver observer)
  112.       {
  113.       //Add your code here
  114.       return false;
  115.       }
  116.    public boolean drawImage(Image img, int x, int y, int width, int height, ImageObserver observer)
  117.       {
  118.       //Add your code here
  119.       return false;
  120.       }
  121.    public boolean drawImage(Image img, int x, int y, Color bgcolor, ImageObserver observer)
  122.       {
  123.       //Add your code here
  124.       return false;
  125.       }
  126.    public boolean drawImage(Image img, int x, int y, int width, int height, Color bgcolor, ImageObserver observer)
  127.       {
  128.       //Add your code here
  129.       return false;
  130.       }
  131.    public void dispose()
  132.       {
  133.       //Add your code here
  134.       }
  135.    }
  136.