From: Erik V. <ev...@us...> - 2009-02-04 20:36:46
|
Update of /cvsroot/rails/18xx/rails/game/action In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv4948/rails/game/action Modified Files: RepayLoans.java Log Message: CGR Formation round phase 1: repaying loans. Index: RepayLoans.java =================================================================== RCS file: /cvsroot/rails/18xx/rails/game/action/RepayLoans.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** RepayLoans.java 21 Jan 2009 20:18:24 -0000 1.2 --- RepayLoans.java 4 Feb 2009 20:36:40 -0000 1.3 *************** *** 15,19 **** * @author Erik Vos */ ! public class RepayLoans extends PossibleORAction { // Initial attributes --- 15,19 ---- * @author Erik Vos */ ! public class RepayLoans extends PossibleAction { // Initial attributes *************** *** 56,64 **** * @return Returns the company. */ - @Override public PublicCompanyI getCompany() { return company; } public int getPrice() { return price; --- 56,70 ---- * @return Returns the company. */ public PublicCompanyI getCompany() { return company; } + /** + * @return Returns the company. + */ + public String getCompanyName() { + return companyName; + } + public int getPrice() { return price; |