package java.util; import checkers.nullness.quals.*; @checkers.quals.DefaultQualifier("checkers.nullness.quals.NonNull") public final class Currency implements java.io.Serializable { private static final long serialVersionUID = 0L; protected Currency() {} public static Currency getInstance(String a1) { throw new RuntimeException("skeleton method"); } public static Currency getInstance(Locale a1) { throw new RuntimeException("skeleton method"); } public String getCurrencyCode() { throw new RuntimeException("skeleton method"); } public String getSymbol() { throw new RuntimeException("skeleton method"); } public String getSymbol(Locale a1) { throw new RuntimeException("skeleton method"); } public int getDefaultFractionDigits() { throw new RuntimeException("skeleton method"); } public String toString() { throw new RuntimeException("skeleton method"); } }