• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  *******************************************************************************
3  * Copyright (C) 2011, International Business Machines Corporation and         *
4  * others. All Rights Reserved.                                                *
5  *******************************************************************************
6  */
7 package com.ibm.icu.impl;
8 
9 import com.ibm.icu.text.TimeZoneNames;
10 import com.ibm.icu.text.TimeZoneNames.Factory;
11 import com.ibm.icu.util.ULocale;
12 
13 /**
14  * The implementation class of <code>TimeZoneNames.Factory</code>
15  */
16 public class TimeZoneNamesFactoryImpl extends Factory {
17 
18     /* (non-Javadoc)
19      * @see com.ibm.icu.text.TimeZoneNames.Factory#getTimeZoneNames(com.ibm.icu.util.ULocale)
20      */
21     @Override
getTimeZoneNames(ULocale locale)22     public TimeZoneNames getTimeZoneNames(ULocale locale) {
23         return new TimeZoneNamesImpl(locale);
24     }
25 
26 }
27