blob: 93fe400d3f2985af152316e214c90fc06942d2af [file] [log] [blame]
/*
*******************************************************************************
* Copyright (C) 1996-2000, International Business Machines Corporation and *
* others. All Rights Reserved. *
*******************************************************************************
*
* $Source: /xsrl/Nsvn/icu/icu4j/src/com/ibm/util/resources/Attic/HebrewCalendarSymbols.java,v $
* $Date: 2000/09/19 18:37:36 $
* $Revision: 1.3 $
*
*****************************************************************************************
*/
package com.ibm.util.resources;
import java.util.ListResourceBundle;
/**
* Default Date Format symbols for the Hebrew Calendar
*/
public class HebrewCalendarSymbols extends ListResourceBundle {
private static String copyright = "Copyright \u00a9 1998 IBM Corp. All Rights Reserved.";
static final Object[][] fContents = {
{ "MonthNames", new String[] {
"Tishri",
"Heshvan",
"Kislev",
"Tevet",
"Shevat",
"Adar I", // Leap years only
"Adar",
"Nisan",
"Iyar",
"Sivan",
"Tamuz",
"Av",
"Elul",
} },
{ "Eras", new String[] {
"AM"
} },
};
public synchronized Object[][] getContents() {
return fContents;
}
};