]> gitweb.fperrin.net Git - Dictionary.git/blob - jars/icu4j-52_1/demos/src/com/ibm/icu/dev/demo/calendar/CalendarApp.java
Clean up imports.
[Dictionary.git] / jars / icu4j-52_1 / demos / src / com / ibm / icu / dev / demo / calendar / CalendarApp.java
1 /*
2  *******************************************************************************
3  * Copyright (C) 1997-2010, International Business Machines Corporation and    *
4  * others. All Rights Reserved.                                                *
5  *******************************************************************************
6  */
7
8 package com.ibm.icu.dev.demo.calendar;
9
10 import java.awt.Frame;
11
12 import com.ibm.icu.dev.demo.impl.DemoApplet;
13
14 /**
15  * CalendarApp demonstrates how Calendar works.
16  */
17 public class CalendarApp extends DemoApplet
18 {
19     /**
20      * For serialization
21      */
22     private static final long serialVersionUID = -4270137898405840825L;
23
24     /**
25      * The main function which defines the behavior of the CalendarDemo
26      * applet when an applet is started.
27      */
28     public static void main(String argv[]) {
29
30         new CalendarApp().showDemo();
31     }
32
33     /* This creates a CalendarFrame for the demo applet. */
34     public Frame createDemoFrame(DemoApplet applet) {
35         return new CalendarFrame(applet);
36     }
37 }