01: /*
02: *******************************************************************************
03: * Copyright (C) 1997-2004, International Business Machines Corporation and *
04: * others. All Rights Reserved. *
05: *******************************************************************************
06: */
07:
08: package com.ibm.icu.dev.demo.calendar;
09:
10: import java.awt.Frame;
11:
12: import com.ibm.icu.dev.demo.impl.*;
13:
14: /**
15: * CalendarApp demonstrates how Calendar works.
16: */
17: public class CalendarApp extends DemoApplet {
18: /**
19: * The main function which defines the behavior of the CalendarDemo
20: * applet when an applet is started.
21: */
22: public static void main(String argv[]) {
23:
24: new CalendarApp().showDemo();
25: }
26:
27: /* This creates a CalendarFrame for the demo applet. */
28: public Frame createDemoFrame(DemoApplet applet) {
29: return new CalendarFrame(applet);
30: }
31: }
|