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