<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
/*
 * ChooseShapes.java
 * burton rosenberg
 * 13 April 2004
 */


import java.awt.* ;
import javax.swing.* ;

class ChooseShapes extends JPanel {

   static final String FRAME_TITLE = "ChooseShapes" ;
   static final int FRAME_X = 600 ;
   static final int FRAME_Y = 400 ;

   public static void main ( String [] args ) {
      JFrame jf = new JFrame(FRAME_TITLE) ;
      (jf.getContentPane()).add(new ChooseShapes()) ;
      jf.setSize(FRAME_X, FRAME_Y) ;
      jf.setVisible(true) ;
   }


   ChooseShapes() {
      setLayout(new BorderLayout()) ;
      TheModel tm = new TheModel() ;
      TheView tv = new TheView(tm) ;
      TheController tc = new TheController(tm) ;
      add( tc, BorderLayout.NORTH ) ;
      add( tv, BorderLayout.CENTER ) ;
   } 

}

</pre></body></html>