KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > ibm > icu > impl > data > HolidayBundle_en


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 JavaDoc;
11
12 public class HolidayBundle_en extends ListResourceBundle JavaDoc {
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 JavaDoc[][] fContents = {
23         { "", "" }, // Can't be empty!
24
};
25
26     public synchronized Object JavaDoc[][] getContents() { return fContents; }
27
28 }
29
Popular Tags