KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > ibm > icu > util > CalendarFactory


1 /**
2 *******************************************************************************
3 * Copyright (C) 2002-2004, International Business Machines Corporation and *
4 * others. All Rights Reserved. *
5 *******************************************************************************
6 */

7 package com.ibm.icu.util;
8
9 import com.ibm.icu.util.TimeZone;
10 import java.util.Locale JavaDoc;
11 /**
12  * @prototype
13  */

14 interface CalendarFactory {
15     public Calendar create(TimeZone tz, ULocale loc);
16     public String JavaDoc factoryName();
17 }
18         
19
Popular Tags