Exemplo n.º 1
0
 /* Can be run as either an application or as an applet. */
 public static void main(String args[]) {
   SawFaders applet = new SawFaders();
   JAppletFrame frame = new JAppletFrame("SawFaders", applet);
   frame.setSize(440, 200);
   frame.setVisible(true);
   frame.test();
 }
Exemplo n.º 2
0
 /* Can be run as either an application or as an applet. */
 public static void main(String args[]) {
   AboutJSyn applet = new AboutJSyn();
   JAppletFrame frame = new JAppletFrame("About JSyn", applet);
   frame.setSize(440, 300);
   frame.setVisible(true);
   frame.test();
 }