1 /*
2  *******************************************************************************
3  * Copyright (C) 2005, International Business Machines Corporation and    *
4  * others. All Rights Reserved.                                                *
5  *******************************************************************************
6  */
7package com.ibm.icu.dev.data.resources;
8
9import java.util.ListResourceBundle;
10
11public class TestDataElements_en_US extends ListResourceBundle {
12
13    private static Object[][] data = new Object[][] {
14        {
15            "from_en_US",
16            "This data comes from en_US"
17        }
18
19    };
20    protected Object[][] getContents() {
21        return data;
22    }
23}
24