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 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!"); } }