* @version $Id: PrepopulatedTutorial.java,v 1.19 2005/07/08 19:55:08 cxh Exp $
* @Pt.AcceptedRating Red
*/
public class PrepopulatedTutorial {
public static void main(String[] argv) {
final AppContext context = new BasicFrame("Prepopulated Tutorial");
context.setSize(300, 600);
SwingUtilities.invokeLater(new Runnable() {
public void run() {
new PrepopulatedTutorial(context);
context.setVisible(true);
}
});
}