01: /*
02: *******************************************************************************
03: * Copyright (C) 1996-2005, International Business Machines Corporation and *
04: * others. All Rights Reserved. *
05: *******************************************************************************
06: */
07: package com.ibm.icu.impl.data;
08:
09: import java.util.ListResourceBundle;
10:
11: /**
12: * Default break-iterator rules.
13: * This resource tells which break iterator class type is instantiated
14: * for each of the standard (built-in) boundary types.
15: *
16: * Locales (Thai) needing a dictionary based iterator override this.
17: */
18:
19: public class BreakIteratorRules extends ListResourceBundle {
20: public Object[][] getContents() {
21: return contents;
22: }
23:
24: static final Object[][] contents = {
25: // BreakIteratorClasses lists the class names to instantiate for each
26: // built-in type of BreakIterator
27: { "BreakIteratorClasses", new String[] { "RuleBasedBreakIterator", // character-break iterator class
28: "RuleBasedBreakIterator", // word-break iterator class
29: "RuleBasedBreakIterator", // line-break iterator class
30: "RuleBasedBreakIterator", // sentence-break iterator class
31: "RuleBasedBreakIterator" } // Title-Case break iterator class
32: }
33:
34: };
35: }
|