Created
July 2, 2011 09:31
-
-
Save philipschwarz/1059894 to your computer and use it in GitHub Desktop.
After applying "Replace Temp with Query" to totalAmount
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public String statement() | |
{ | |
int frequentRenterPoints = 0; | |
Enumeration<Rental> allRentals = rentals.elements(); | |
String result = "Rental record for " + getName() + "\n"; | |
while (allRentals.hasMoreElements()) | |
{ | |
Rental each = (Rental) allRentals.nextElement(); | |
frequentRenterPoints += each.getFrequentRenterPoints(); | |
// show figures for this rental | |
result += "\t" + each.getMovie().getTitle() + "\t" + String.valueOf(each.getCharge()) + "\n"; | |
} | |
// add footer lines | |
result += "Amount owed is " + String.valueOf(getTotalCharge()) + "\n"; | |
result += "You earned " + frequentRenterPoints + " frequent renter points"; | |
return result; | |
} | |
private double getTotalCharge() | |
{ | |
double result = 0; | |
for(Rental rental : rentals) | |
{ | |
result += rental.getCharge(); | |
} | |
return result; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment