314315316317318319320321
* * @category currencies */ public static class TRYCurrency extends Currency { public TRYCurrency() { Data tryData = new Data("New Turkish lira", "TRY", 949, "YTL", "", 100, new Rounding(), "%1$.2f %3%"); data_ = tryData; }
329330331332333334335336
* * @category currencies */ public static class ATSCurrency extends Currency { public ATSCurrency() { Data atsData = new Data("Austrian shilling", "ATS", 40, "", "", 100, new Rounding(), "%2% %1$.2f", new EURCurrency()); data_ = atsData; }
342343344345346347348349
* * @category currencies */ public static class BEFCurrency extends Currency { public BEFCurrency() { Data befData = new Data("Belgian franc", "BEF", 56, "", "", 1, new Rounding(), "%2% %1$.0f", new EURCurrency()); data_ = befData; }
355356357358359360361362
* * @category currencies */ public static class DEMCurrency extends Currency { public DEMCurrency() { Data demData = new Data("Deutsche mark", "DEM", 276, "DM", "", 100, new Rounding(), "%1$.2f %3%", new EURCurrency()); data_ = demData; }
368369370371372373374375
* * @category currencies */ public static class ESPCurrency extends Currency { public ESPCurrency() { Data espData = new Data("Spanish peseta", "ESP", 724, "Pta", "", 100, new Rounding(), "%1$.0f %3%", new EURCurrency()); data_ = espData; }
381382383384385386387388
* * @category currencies */ public static class FIMCurrency extends Currency { public FIMCurrency() { Data fimData = new Data("Finnish markka", "FIM", 246, "mk", "", 100, new Rounding(), "%1$.2f %3%", new EURCurrency()); data_ = fimData; }
394395396397398399400401
* * @category currencies */ public static class FRFCurrency extends Currency { public FRFCurrency() { Data frfData = new Data("French franc", "FRF", 250, "", "", 100, new Rounding(), "%1$.2f %2%", new EURCurrency()); data_ = frfData; }
407408409410411412413414
* * @category currencies */ public static class GRDCurrency extends Currency { public GRDCurrency() { Data grdData = new Data("Greek drachma", "GRD", 300, "", "", 100, new Rounding(), "%1$.2f %2%", new EURCurrency()); data_ = grdData; }
420421422423424425426427
* * @category currencies */ public static class IEPCurrency extends Currency { public IEPCurrency() { Data iepData = new Data("Irish punt", "IEP", 372, "", "", 100, new Rounding(), "%2% %1$.2f", new EURCurrency()); data_ = iepData; }
433434435436437438439440
* * @category currencies */ public static class ITLCurrency extends Currency { public ITLCurrency() { Data itlData = new Data("Italian lira", "ITL", 380, "L", "", 1, new Rounding(), "%3% %1$.0f", new EURCurrency()); data_ = itlData; }