01: /*
02: *******************************************************************************
03: * Copyright (C) 1996-2005, International Business Machines Corporation and *
04: * others. All Rights Reserved. *
05: *******************************************************************************
06: */
07:
08: package com.ibm.icu.impl.data;
09:
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 = { { "", "" }, // Can't be empty!
23: };
24:
25: public synchronized Object[][] getContents() {
26: return fContents;
27: }
28:
29: }
|