Home | History | Annotate | Download | only in impl
      1 /* GENERATED SOURCE. DO NOT MODIFY. */
      2 //  2016 and later: Unicode, Inc. and others.
      3 // License & terms of use: http://www.unicode.org/copyright.html#License
      4 /*
      5  *******************************************************************************
      6  * Copyright (C) 2011, International Business Machines Corporation and         *
      7  * others. All Rights Reserved.                                                *
      8  *******************************************************************************
      9  */
     10 package android.icu.impl;
     11 
     12 import android.icu.text.TimeZoneNames;
     13 import android.icu.text.TimeZoneNames.Factory;
     14 import android.icu.util.ULocale;
     15 
     16 /**
     17  * The implementation class of <code>TimeZoneNames.Factory</code>
     18  * @hide Only a subset of ICU is exposed in Android
     19  */
     20 public class TimeZoneNamesFactoryImpl extends Factory {
     21 
     22     /* (non-Javadoc)
     23      * @see android.icu.text.TimeZoneNames.Factory#getTimeZoneNames(android.icu.util.ULocale)
     24      */
     25     @Override
     26     public TimeZoneNames getTimeZoneNames(ULocale locale) {
     27         return new TimeZoneNamesImpl(locale);
     28     }
     29 
     30 }
     31