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