/[classpath]/classpath/gnu/java/locale/LocaleInformation.java
ViewVC logotype

Diff of /classpath/gnu/java/locale/LocaleInformation.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.5 by mkoch, Sun Dec 19 13:57:46 2004 UTC revision 1.6 by gnu_andrew, Thu Dec 30 12:41:12 2004 UTC
# Line 81  public class LocaleInformation extends L Line 81  public class LocaleInformation extends L
81      public HashtableCurrencySymbols()      public HashtableCurrencySymbols()
82      {      {
83        super();        super();
       put("EUR", "\u20ac");  
84        put("GBP", "\u00a3");        put("GBP", "\u00a3");
85        put("INR", "=0#Rs.|1#Re.|1<Rs.");        put("JPY", "\u00A5");
86        put("ITL", "\u20A4");        put("ITL", "\u20A4");
87        put("JPY", "\u20A5");        put("NGN", "\u20A6");
88          put("ESP", "\u20A7");
89          put("INR", "=0#\u20A8.|1#Re.|1<\u20A8."); /* Complex format -- see DecimalFormat */
90          put("KRW", "\u20A9");
91          put("ILS", "\u20AA");
92          put("VND", "\u20AB");
93          put("EUR", "\u20ac");
94          put("TWD", "NT$");
95        put("USD", "US$");        put("USD", "US$");
96          put("CAD", "CAN$");
97          put("AUD", "A$");
98          put("JMD", "J$");
99          put("ZWD", "Z$");
100          put("IQD", "ID");
101      }      }
102    }    }
103    
104    private static final Object currencySymbols = new HashtableCurrencySymbols();    private static final java.util.Hashtable currencySymbols = new HashtableCurrencySymbols();
105      
106      public static java.util.Hashtable getCurrencySymbols()
107      {
108        return currencySymbols;
109      }
110        
111    private static final Object[][] contents =    private static final Object[][] contents =
112    {    {

Legend:
Removed from v.1.5  
changed lines
  Added in v.1.6

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26