blob: 837d97e9edb82c477e2f0449b8f44027369a1d0b [file] [log] [blame]
/* GENERATED SOURCE. DO NOT MODIFY. */
/*
*******************************************************************************
* Copyright (C) 2011, International Business Machines Corporation and *
* others. All Rights Reserved. *
*******************************************************************************
*/
package android.icu.impl;
import android.icu.text.TimeZoneNames;
import android.icu.text.TimeZoneNames.Factory;
import android.icu.util.ULocale;
/**
* The implementation class of <code>TimeZoneNames.Factory</code>
* @hide Only a subset of ICU is exposed in Android
*/
public class TimeZoneNamesFactoryImpl extends Factory {
/* (non-Javadoc)
* @see android.icu.text.TimeZoneNames.Factory#getTimeZoneNames(android.icu.util.ULocale)
*/
@Override
public TimeZoneNames getTimeZoneNames(ULocale locale) {
return new TimeZoneNamesImpl(locale);
}
}