]> gitweb.fperrin.net Git - Dictionary.git/blob - jars/icu4j-52_1/main/classes/core/src/com/ibm/icu/text/RbnfLenientScannerProvider.java
Added flags.
[Dictionary.git] / jars / icu4j-52_1 / main / classes / core / src / com / ibm / icu / text / RbnfLenientScannerProvider.java
1 /*
2  *******************************************************************************
3  * Copyright (C) 2009-2012, International Business Machines Corporation and    *
4  * others. All Rights Reserved.                                                *
5  *******************************************************************************
6  */
7
8 package com.ibm.icu.text;
9
10 import com.ibm.icu.util.ULocale;
11
12 /**
13  * A provider for an RbnfLenientScanner.
14  *
15  * @stable ICU 4.4
16  */
17 public interface RbnfLenientScannerProvider {
18   /**
19    * Returns a scanner appropriate for the given locale, with optional extra data.
20    * in the form of collation rules.
21    *
22    * @param locale the locale to provide the default lenient rules.
23    * @param extras extra collation rules
24    * @return the lenient scanner, or null
25    * @stable ICU 4.4
26    */
27   RbnfLenientScanner get(ULocale locale, String extras);
28 }