01: import javax.swing.JFrame;
02: 
03: /**
04:    This program tests the InvestmentFrame.
05: */
06: public class InvestmentFrameViewer
07: {  
08:    public static void main(String[] args)
09:    {  
10:       JFrame frame = new InvestmentFrame();
11:       frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
12:       frame.setVisible(true);      
13:    }
14: }
15: