CalendarWrapper01 is a class that includes a CalendarComponent and a CalendarDayTimeComponent

In order to use this class in your programs you must add the calendarcomponent.jar and calendarwrapper01.jar files to your project classpath.

The Java code below shows how to quickly integrate the CalendarWrapper01 class in your application:
<CODE>
CalendarWrapper01 calendarWrapper01 = new CalendarWrapper01();

JFrame frame = new JFrame("CalendarWrapper01 Test");
frame.getContentPane().add(calendarWrapper01);
frame.pack();
frame.setVisible(true);
</CODE>

