script-astra/Android/Sdk/sources/android-35/android/icu/impl/TimeZoneNamesFactoryImpl.java
localadmin 4380f00a78 init
2025-01-20 18:15:20 +03:00

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);
}
}