• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 ohos.global.icu.impl;
11 
12 import ohos.global.icu.text.TimeZoneNames;
13 import ohos.global.icu.text.TimeZoneNames.Factory;
14 import ohos.global.icu.util.ULocale;
15 
16 /**
17  * The implementation class of <code>TimeZoneNames.Factory</code>
18  * @hide exposed on OHOS
19  */
20 public class TimeZoneNamesFactoryImpl extends Factory {
21 
22     /* (non-Javadoc)
23      * @see ohos.global.icu.text.TimeZoneNames.Factory#getTimeZoneNames(ohos.global.icu.util.ULocale)
24      */
25     @Override
getTimeZoneNames(ULocale locale)26     public TimeZoneNames getTimeZoneNames(ULocale locale) {
27         return new TimeZoneNamesImpl(locale);
28     }
29 
30 }
31