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_Latn_US extends ListResourceBundle {
12: private static Object[][] data = new Object[][] { {
13: "from_en_Latn_US", "This data comes from en_Latn_US" }
14:
15: };
16:
17: protected Object[][] getContents() {
18: return data;
19: }
20: }
|