home *** CD-ROM | disk | FTP | other *** search
/ Inside Dreamweaver 4 / IDW4.ISO / pc / Projects / ch20 / java / SimpleDraw / Circle.class (.txt) next >
Encoding:
Java Class File  |  2000-04-03  |  520 b   |  9 lines

  1. import java.awt.Graphics;
  2.  
  3. class Circle extends Shape {
  4.    void draw(Graphics var1) {
  5.       var1.setColor(super.color);
  6.       var1.fillOval(super.x - 20, super.y - 20, 40, 40);
  7.    }
  8. }
  9.