01: /*
02: *******************************************************************************
03: * Copyright (C) 2005, 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_en_US extends ListResourceBundle {
12:
13: private static Object[][] data = new Object[][] { { "from_en_US",
14: "This data comes from en_US" }
15:
16: };
17:
18: protected Object[][] getContents() {
19: return data;
20: }
21: }
|