01: /*
02: *******************************************************************************
03: * Copyright (C) 2005, International Business Machines Corporation and *
04: * others. All Rights Reserved. *
05: *******************************************************************************
06: */
07:
08: package com.ibm.icu.dev.data.resources;
09:
10: import java.util.ListResourceBundle;
11:
12: public class TestDataElments_fr_Latn_FR extends ListResourceBundle {
13:
14: private static Object[][] data = new Object[][] { {
15: "from_fr_Latn_FR", "This data comes from fr_Latn_FR" }
16:
17: };
18:
19: protected Object[][] getContents() {
20: return data;
21: }
22: }
|