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 ;11 /**12 * @prototype13 */14 interface CalendarFactory {15 public Calendar create(TimeZone tz, ULocale loc);16 public String factoryName();17 }18 19