Home | History | Annotate | Download | only in data
      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 android.icu.impl.data;
     12 
     13 import java.util.Calendar;
     14 import java.util.ListResourceBundle;
     15 
     16 import android.icu.util.EasterHoliday;
     17 import android.icu.util.Holiday;
     18 import android.icu.util.SimpleHoliday;
     19 
     20 /**
     21  * @hide Only a subset of ICU is exposed in Android
     22  */
     23 public class HolidayBundle_el_GR extends ListResourceBundle {
     24     static private final Holiday[] fHolidays = {
     25         SimpleHoliday.NEW_YEARS_DAY,
     26         SimpleHoliday.EPIPHANY,
     27 
     28         new SimpleHoliday(Calendar.MARCH,     25,  0,    "Independence Day"),
     29 
     30         SimpleHoliday.MAY_DAY,
     31         SimpleHoliday.ASSUMPTION,
     32 
     33         new SimpleHoliday(Calendar.OCTOBER,   28,  0,    "Ochi Day"),
     34 
     35         SimpleHoliday.CHRISTMAS,
     36         SimpleHoliday.BOXING_DAY,
     37 
     38         // Easter and related holidays in the Orthodox calendar
     39         new EasterHoliday(-2,   true, "Good Friday"),
     40         new EasterHoliday( 0,   true, "Easter Sunday"),
     41         new EasterHoliday( 1,   true, "Easter Monday"),
     42         new EasterHoliday(50,   true, "Whit Monday"),
     43     };
     44     static private final Object[][] fContents = {
     45         {   "holidays",         fHolidays   },
     46     };
     47     @Override
     48     public synchronized Object[][] getContents() { return fContents; }
     49 }
     50