01: /**
02: *******************************************************************************
03: * Copyright (C) 2001-2004, International Business Machines Corporation and *
04: * others. All Rights Reserved. *
05: *******************************************************************************
06: */package com.ibm.icu.dev.data;
07:
08: import com.ibm.icu.impl.ICUListResourceBundle;
09:
10: /**
11: * @author Ram
12: *
13: * To change this generated comment edit the template variable "typecomment":
14: * Window>Preferences>Java>Templates.
15: * To enable and disable the creation of type comments go to
16: * Window>Preferences>Java>Code Generation.
17: */
18: public class TestDataElements_testcircularalias extends
19: ICUListResourceBundle {
20: public TestDataElements_testcircularalias() {
21: super .contents = data;
22: }
23:
24: private static Object[][] data = new Object[][] {
25: {
26: "aaa",
27: new ICUListResourceBundle.Alias(
28: "testcircularalias/aab"), },
29: {
30: "aab",
31: new ICUListResourceBundle.Alias(
32: "testcircularalias/aac"), },
33: {
34: "aac",
35: new ICUListResourceBundle.Alias(
36: "testcircularalias/aaa"), } };
37: }
|