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-2005, 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.ListResourceBundle; 14 15 /** 16 * @hide exposed on OHOS 17 */ 18 public class HolidayBundle extends ListResourceBundle { 19 20 // Normally, each HolidayBundle uses the holiday's US English name 21 // as the string key for looking up the localized name. This means 22 // that the key itself can be used if no name is found for the requested 23 // locale. 24 // 25 // For holidays where the key is _not_ the English name, e.g. in the 26 // case of conflicts, the English name must be given here. 27 // 28 static private final Object[][] fContents = { { "", "" }, // Can't be empty! 29 }; 30 31 @Override getContents()32 public synchronized Object[][] getContents() { 33 return fContents; 34 } 35 36 } 37