CurrencyAmount.java
411 Bytes
/*
* Decompiled with CFR 0_118.
*/
package com.adobe.agl.util;
import com.adobe.agl.util.Currency;
import com.adobe.agl.util.Measure;
import com.adobe.agl.util.MeasureUnit;
public class CurrencyAmount
extends Measure {
public CurrencyAmount(Number number, Currency currency) {
super(number, currency);
}
public Currency getCurrency() {
return (Currency)this.getUnit();
}
}