CurrencyAmount.java 372 Bytes
/*
 * Decompiled with CFR 0_118.
 */
package com.adobe.agl.util;

import com.adobe.agl.util.Currency;
import com.adobe.agl.util.Measure;

public class CurrencyAmount
extends Measure {
    public CurrencyAmount(Number number, Currency currency) {
        super(number, currency);
    }

    public Currency getCurrency() {
        return (Currency)this.getUnit();
    }
}