// Stage B: creating a window.
// Barry Cornelius, 19 June 2000
import javax.swing. JFrame;
public class GetDateProg
{
   public static void main(final String[] pArgs)
   {
      final JFrame tJFrame = new JFrame("GetDateProg: Stage B");
      tJFrame.setLocation(50, 100);
      tJFrame.setSize(300, 200);
      tJFrame.setVisible(true);
   }
}
