CalendarComponent01 is a class that extends the CalendarComponent class and has the following customizations:

- displays the Today label centered
- do not display the None label
- has the empty selections not allowed

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

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

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