|
From: Hirzel P. <ph...@us...> - 2006-05-08 17:57:56
|
Update of /cvsroot/tcotool/TCO-Tool/src/org/tcotool/model In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28131/src/org/tcotool/model Modified Files: Currency.java Log Message: Some important currencies added Index: Currency.java =================================================================== RCS file: /cvsroot/tcotool/TCO-Tool/src/org/tcotool/model/Currency.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Currency.java 20 Nov 2005 15:53:40 -0000 1.2 --- Currency.java 7 May 2006 14:39:03 -0000 1.3 *************** *** 2,5 **** --- 2,9 ---- import ch.softenvironment.jomm.mvc.model.DbEnumeration; + /** + * Currency Enumeration according to ISO 4217. + * @author Peter Hirzel <i>soft</i>Environment + */ public class Currency extends DbEnumeration { public final static String CHF = "CHF"; *************** *** 8,11 **** --- 12,19 ---- public final static String JPY = "JPY"; public final static String CFA = "CFA"; + public final static String INR = "INR"; + public final static String AUD = "AUD"; + public final static String CAD = "CAD"; + public final static String XAF = "XAF"; public Currency(ch.softenvironment.jomm.DbObjectServer objectServer) { super(objectServer); |