Home | History | Annotate | Download | only in data
      1 //  2016 and later: Unicode, Inc. and others.
      2 // License & terms of use: http://www.unicode.org/copyright.html#License
      3 /*
      4  *******************************************************************************
      5  * Copyright (C) 1996-2005, International Business Machines Corporation and    *
      6  * others. All Rights Reserved.                                                *
      7  *******************************************************************************
      8  */
      9 
     10 package com.ibm.icu.impl.data;
     11 
     12 import java.util.ListResourceBundle;
     13 
     14 public class HolidayBundle_en extends ListResourceBundle {
     15 
     16     // Normally, each HolidayBundle uses the holiday's US English name
     17     // as the string key for looking up the localized name.  This means
     18     // that the key itself can be used if no name is found for the requested
     19     // locale.
     20     //
     21     // For holidays where the key is _not_ the English name, e.g. in the
     22     // case of conflicts, the English name must be given here.
     23     //
     24     static private final Object[][] fContents = {
     25         {   "", ""  },      // Can't be empty!
     26     };
     27 
     28     @Override
     29     public synchronized Object[][] getContents() { return fContents; }
     30 
     31 }
     32