import javax.swing.*; /** A simple class to test Java Web Start @author P. Conrad @version CS56, Winter 2011, 02/06/2011 */ public class HelloWebStartJFrame { /** Tests the methods of the BankAccount class. @param args not used */ public static void main(String[] args) { System.out.println("HelloWebStart starting..."); JFrame frame = new JFrame(); JLabel label = new JLabel("Hello From Java Web Start"); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); frame.getContentPane().add(label); frame.setSize(100,100); frame.setVisible(true); System.out.println("... HelloWebStart done."); } }