blob: f6ead5b7a0d000baf44afd718c980e49e48e1650 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
package java.util;
public final class Currency
implements java.io.Serializable
{
Currency() { throw new RuntimeException("Stub!"); }
public static java.util.Currency getInstance(java.lang.String currencyCode) { throw new RuntimeException("Stub!"); }
public static java.util.Currency getInstance(java.util.Locale locale) { throw new RuntimeException("Stub!"); }
public static java.util.Set<java.util.Currency> getAvailableCurrencies() { throw new RuntimeException("Stub!"); }
public java.lang.String getCurrencyCode() { throw new RuntimeException("Stub!"); }
public java.lang.String getDisplayName() { throw new RuntimeException("Stub!"); }
public java.lang.String getDisplayName(java.util.Locale locale) { throw new RuntimeException("Stub!"); }
public java.lang.String getSymbol() { throw new RuntimeException("Stub!"); }
public java.lang.String getSymbol(java.util.Locale locale) { throw new RuntimeException("Stub!"); }
public int getDefaultFractionDigits() { throw new RuntimeException("Stub!"); }
public java.lang.String toString() { throw new RuntimeException("Stub!"); }
}
|