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) 2006-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_te extends ListResourceBundle {
     14     private static Object[][] data = new Object[][] {
     15         {
     16             "from_te",
     17             "In root should be overridden"
     18         }
     19     };
     20     protected Object[][] getContents() {
     21         return data;
     22     }
     23 }