01: /**
02: *******************************************************************************
03: * Copyright (C) 2002-2004, International Business Machines Corporation and *
04: * others. All Rights Reserved. *
05: *******************************************************************************
06: */package com.ibm.icu.util;
07:
08: import com.ibm.icu.util.TimeZone;
09: import java.util.Locale;
10:
11: /**
12: * @prototype
13: */
14: interface CalendarFactory {
15: public Calendar create(TimeZone tz, ULocale loc);
16:
17: public String factoryName();
18: }
|