All Downloads are FREE. Search and download functionalities are using the official Maven repository.

gw.util.money.CoreCurrencyEnhancement.gsx Maven / Gradle / Ivy

There is a newer version: 1.18.2
Show newest version
package gw.util.money

uses java.util.Currency

enhancement CoreCurrencyEnhancement : Currency
{
  static property get BASE() : Currency {
    try {
      return Currency.getInstance( Locale.Default ) 
    }
    catch( e: Exception ) {
      // if the locale's currency is not supported default to USD
      return Currency.getInstance( "USD" ) 
    }
  }

  function postfixBind( value: Number ) : Money {
    return new Money( value, this )
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy