blob: 5089872e0eea0ab2deaeb4bf8a454233bfd185a5 [file] [log] [blame]
/*
*******************************************************************************
* Copyright (C) 2003, International Business Machines Corporation and *
* others. All Rights Reserved. *
*******************************************************************************
*
* $Source: /xsrl/Nsvn/icu/icu4j/src/com/ibm/icu/text/UFormat.java,v $
* $Date: 2003/11/22 01:05:45 $
* $Revision: 1.3 $
*
*******************************************************************************
*/
package com.ibm.icu.text;
import java.text.Format;
import com.ibm.icu.util.ULocale;
/**
* An abstract class that extends from java.text.Format class. This class is
* intended for adding additional functionality to the base class.
* @author weiv
* @draft ICU 2.8
*/
public abstract class UFormat extends Format {
/**
* @draft ICU 2.8
*/
public UFormat() {}
/**
* Return the locale used by the format object depending on the type
*
* @param type The type fo the locale that should returned.
* @return ULocale object for the type requested
* @see ULocale.ULocaleDataType
* @see ULocale
* @draft ICU 2.8
*/
public abstract ULocale getLocale(ULocale.ULocaleDataType type);
}