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