Shift-F2). Also an Interactions Pane "applet" command that works
like the "java" command we already had. You can start an
applet from the command line by typing in:
java MyApplet arg1 arg2 arg3
This internally generates the following command line:
edu.rice.cs.plt.swing.SwingUtil.showApplet(new MyApplet("arg1","arg2","arg3"), 400, 300);
The arguments get passed in as strings. That means the applet class
must have a constructor with the right number of String parameters.