blob: 565e43ed61ffadb0d7227d31e4729a4118de6af0 [file] [log] [blame]
/*
*******************************************************************************
* Copyright (C) 1996-2000, International Business Machines Corporation and *
* others. All Rights Reserved. *
*******************************************************************************
*
* $Source: /xsrl/Nsvn/icu/icu4j/src/com/ibm/text/resources/Attic/NumberFormatRules.java,v $
* $Date: 2001/11/07 00:30:31 $
* $Revision: 1.3 $
*
*****************************************************************************************
*/
package com.ibm.text.resources;
import java.util.ListResourceBundle;
/**
* Base resource for RuleBasedNumberFormat data. Each resource contains
* rule sets for three uses: spelled-out numerical values, ordinal
* abbreviations, and durations in seconds. This resource contains the
* U.S. English data.
*
* @author Richard Gillam
* @version $Version$ $Date: 2001/11/07 00:30:31 $
*/
public class NumberFormatRules extends ListResourceBundle {
/**
* Puts a copyright in the .class file
*/
private static final String copyrightNotice
= "Copyright \u00a91997-1998 IBM Corp. All rights reserved.";
public Object[][] getContents() {
return contents;
}
Object[][] contents = {
/*
* Default used to be English (US) rules, but now default just formats
* like DecimalFormat. The former default rules are now the _en rules.
*/
{ "SpelloutRules",
"=#,##0.######=;\n"
},
{ "OrdinalRules",
"=#,##0=;\n"
},
{ "DurationRules",
"=#,##0=;\n"
}
};
}