/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package listtest; import javax.swing.JFrame; /** * * @author jcmtiernan */ public class ListTest { /** * @param args the command line arguments */ public static void main( String[] args ) { ListFrame listFrame = new ListFrame(); // create ListFrame listFrame.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE ); listFrame.setSize( 350, 150 ); // set frame size listFrame.setVisible( true ); // display frame } // end main }