Searched refs:otherCurrencies (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/make/tools/src/build/tools/generatecurrencydata/
H A DGenerateCurrencyData.java59 * - otherCurrencies (String)
125 private static StringBuffer otherCurrencies = new StringBuffer(); field in class:GenerateCurrencyData
318 if (otherCurrencies.length() > 0) {
319 otherCurrencies.append('-');
321 otherCurrencies.append(currencyCode);
358 out.writeUTF(otherCurrencies.toString());
/openjdk7/jdk/src/share/classes/java/util/
H A DCurrency.java140 // - otherCurrencies: concatenation of all currency codes that are not the
142 // - otherCurrenciesDFD: decimal format digits for currencies in otherCurrencies, same order
154 static String otherCurrencies; field in class:Currency
219 otherCurrencies = dis.readUTF();
318 int index = otherCurrencies.indexOf(currencyCode);
429 StringTokenizer st = new StringTokenizer(otherCurrencies, "-");

Completed in 1296 milliseconds