|
From: Johan T. <jt...@us...> - 2007-01-17 22:54:06
|
Update of /cvsroot/boakeity/boakeity/src/se/biobanksregistersyd/boakeity/entity In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv28216/src/se/biobanksregistersyd/boakeity/entity Modified Files: Biobank.java Log Message: Add constructor, set default value for country to 'SE'. Index: Biobank.java =================================================================== RCS file: /cvsroot/boakeity/boakeity/src/se/biobanksregistersyd/boakeity/entity/Biobank.java,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- Biobank.java 14 Jan 2007 20:19:49 -0000 1.4 +++ Biobank.java 17 Jan 2007 22:54:01 -0000 1.5 @@ -113,6 +113,13 @@ new ArrayList < BiobankDivision > (); /** + * Public constructor, initialise values. + */ + public Biobank() { + country = "SE"; + } + + /** * Getter for field 'biobankId'. * * @return a <code>String</code> representing the id of the biobank. |