Package org.foo.shape.circle

Examples of org.foo.shape.circle.Circle


        frame.addWindowListener(new WindowAdapter() {
          public void windowClosing(WindowEvent evt) {
            System.exit(0);
          }
        });
        frame.addShape(new Circle());
        frame.addShape(new Square());
        frame.addShape(new Triangle());
        frame.setVisible(true);
      }
    });
View Full Code Here

TOP

Related Classes of org.foo.shape.circle.Circle

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.