]> gitweb.fperrin.net Git - Dictionary.git/blob - jars/icu4j-4_8_1_1/main/tests/core/src/com/ibm/icu/dev/test/util/TestData_en.jpp
Added flags.
[Dictionary.git] / jars / icu4j-4_8_1_1 / main / tests / core / src / com / ibm / icu / dev / test / util / TestData_en.jpp
1 /*
2  *******************************************************************************
3  * Copyright (C) 2005, International Business Machines Corporation and    *
4  * others. All Rights Reserved.                                                *
5  *******************************************************************************
6  */
7 import java.util.ListResourceBundle;
8 import com.ibm.icu.impl.ICUListResourceBundle;
9 /*
10  * Eclipse expects the java files in a package-like directory structure to have a package declaration at the top of the file.
11  * To fool Eclipse this file has an "jpp" extension. The ant build script copies this file to the default package and renames it
12  * before building.
13  */ 
14 /**
15  * @author ram
16  */
17
18 public class TestData_en extends ListResourceBundle {
19     public TestData_en() {
20         
21   }
22   private static Object[][] data = new Object[][] { 
23               {
24                   "aaa",
25                  "testcircularalias/aab",
26               },
27               {
28                   "aab",
29                   "testcircularalias/aac",
30               },
31               {
32                   "aac",
33                   "testcircularalias/aaa",
34               } 
35   };
36   protected Object[][] getContents(){
37       return data;
38   }
39 }