1 /* GENERATED SOURCE. DO NOT MODIFY. */ 2 // © 2016 and later: Unicode, Inc. and others. 3 // License & terms of use: http://www.unicode.org/copyright.html#License 4 /* 5 ******************************************************************************* 6 * Copyright (C) 1996-2010, International Business Machines Corporation and * 7 * others. All Rights Reserved. * 8 ******************************************************************************* 9 */ 10 11 package ohos.global.icu.impl.data; 12 13 import java.util.Calendar; 14 import java.util.ListResourceBundle; 15 16 import ohos.global.icu.util.Holiday; 17 import ohos.global.icu.util.SimpleHoliday; 18 19 /** 20 * @hide exposed on OHOS 21 */ 22 public class HolidayBundle_ja_JP extends ListResourceBundle { 23 static private final Holiday[] fHolidays = { 24 new SimpleHoliday(Calendar.FEBRUARY, 11, 0, "National Foundation Day"), 25 }; 26 static private final Object[][] fContents = { 27 { "holidays", fHolidays }, 28 }; 29 @Override getContents()30 public synchronized Object[][] getContents() { return fContents; } 31 } 32