blob: dbe2715fc8ddac361e9c10ad9cb00f7928cbcaf2 [file] [log] [blame]
/**
*******************************************************************************
* Copyright (C) 2002-2003, International Business Machines Corporation and *
* others. All Rights Reserved. *
*******************************************************************************
*/
package com.ibm.icu.util;
import com.ibm.icu.util.TimeZone;
import java.util.Locale;
/**
* @prototype
*/
interface CalendarFactory {
public Calendar create(TimeZone tz, Locale loc);
public String factoryName();
}