31 lines
1.0 KiB
Java
31 lines
1.0 KiB
Java
/* GENERATED SOURCE. DO NOT MODIFY. */
|
|
// © 2016 and later: Unicode, Inc. and others.
|
|
// License & terms of use: http://www.unicode.org/copyright.html
|
|
/*
|
|
*******************************************************************************
|
|
* 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);
|
|
}
|
|
|
|
}
|