blob: 50f29fc4085dedfc59de556936c6617ec7e23f95 [file] [log] [blame]
/**
*******************************************************************************
* Copyright (C) 2001-2002, International Business Machines Corporation and *
* others. All Rights Reserved. *
*******************************************************************************
*/
package com.ibm.icu.impl.data;
import java.util.ListResourceBundle;
// Default
public class CalendarData extends ListResourceBundle {
/**
* Overrides ListResourceBundle
*/
public Object[][] getContents() {
return new Object[][] {
{ "Weekend",
new String[] { // Saturday:Sunday
"7", "0", // onset dow, millis in day
"2", "0" // cease dow, millis in day
}
},
};
}
}