Home | History | Annotate | Download | only in resources
      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) 2005-2008, International Business Machines Corporation and    *
      6   * others. All Rights Reserved.                                                *
      7   *******************************************************************************
      8   */
      9 package com.ibm.icu.dev.data.resources;
     10 
     11 import java.util.ListResourceBundle;
     12 
     13 public class TestDataElements extends ListResourceBundle {
     14     private static Object[][] data = new Object[][] {
     15         {
     16             "from_root",
     17             "This data comes from root"
     18         },
     19         {
     20             "from_en",
     21             "In root should be overridden"
     22         },
     23         {
     24             "from_en_Latn",
     25             "In root should be overridden"
     26         },
     27         {
     28             "from_en_Latn_US",
     29             "In root should be overridden"
     30         }
     31 
     32     };
     33     protected Object[][] getContents() {
     34         return data;
     35     }
     36 }
     37