]> gitweb.fperrin.net Git - Dictionary.git/blob - jars/icu4j-52_1/main/classes/core/src/com/ibm/icu/impl/data/HolidayBundle.java
Clean up imports.
[Dictionary.git] / jars / icu4j-52_1 / main / classes / core / src / com / ibm / icu / impl / data / HolidayBundle.java
1 /*
2  *******************************************************************************
3  * Copyright (C) 1996-2005, International Business Machines Corporation and    *
4  * others. All Rights Reserved.                                                *
5  *******************************************************************************
6  */
7
8 package com.ibm.icu.impl.data;
9
10 import java.util.ListResourceBundle;
11
12 public class HolidayBundle extends ListResourceBundle {
13
14     // Normally, each HolidayBundle uses the holiday's US English name
15     // as the string key for looking up the localized name.  This means
16     // that the key itself can be used if no name is found for the requested
17     // locale.
18     //
19     // For holidays where the key is _not_ the English name, e.g. in the
20     // case of conflicts, the English name must be given here.
21     //
22     static private final Object[][] fContents = {
23         {   "", ""  },      // Can't be empty!
24     };
25
26     public synchronized Object[][] getContents() { return fContents; }
27
28 }