1/*
2 *******************************************************************************
3 * Copyright (C) 2011, International Business Machines Corporation and         *
4 * others. All Rights Reserved.                                                *
5 *******************************************************************************
6 */
7package com.ibm.icu.impl;
8
9import com.ibm.icu.text.TimeZoneNames;
10import com.ibm.icu.text.TimeZoneNames.Factory;
11import com.ibm.icu.util.ULocale;
12
13/**
14 * The implementation class of <code>TimeZoneNames.Factory</code>
15 */
16public 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
22    public TimeZoneNames getTimeZoneNames(ULocale locale) {
23        return new TimeZoneNamesImpl(locale);
24    }
25
26}
27