// Stage H: a program that creates two instances of the user interface.
// Barry Cornelius, 19 June 2000
public class GetDateProg
{
   public static void main(final String[] pArgs)
   {
      final int tFirstX = 100;
      final int tFirstY = 100;
      final int tSecondX = 100;
      final int tSecondY = 200;
      final GetDateJFrame tFirstGetDateJFrame =
                       new GetDateJFrame("First", tFirstX, tFirstY);
      final GetDateJFrame tSecondGetDateJFrame =
                       new GetDateJFrame("Second", tSecondX, tSecondY);
   }
}
