01: /*
02: *******************************************************************************
03: * Copyright (C) 2006, International Business Machines Corporation and *
04: * others. All Rights Reserved. *
05: *******************************************************************************
06: */
07: package com.ibm.icu.dev.data.resources;
08:
09: import java.util.ListResourceBundle;
10:
11: public class TestDataElements_te extends ListResourceBundle {
12: private static Object[][] data = new Object[][] { { "from_te",
13: "In root should be overridden" }
14:
15: };
16:
17: protected Object[][] getContents() {
18: return data;
19: }
20: }
|