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 */
9package com.ibm.icu.impl;
10
11import com.ibm.icu.text.TimeZoneNames;
12import com.ibm.icu.text.TimeZoneNames.Factory;
13import com.ibm.icu.util.ULocale;
14
15/**
16 * The implementation class of <code>TimeZoneNames.Factory</code>
17 */
18public 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