Created
July 6, 2016 03:08
-
-
Save rightson/1125d4c6891697e055f874e544f244ed to your computer and use it in GitHub Desktop.
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
class Customer... | |
public String statement() { | |
Enumeration rentals = _rentals.elements(); | |
String result = "Rental Record for " + getName() + "\n"; | |
while (rentals.hasMoreElements()) { | |
Rental each = (Rental) rentals.nextElement(); | |
//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 " + String.valueOf(getTotalFrequentRenterPoints()) | |
+ " frequent renter points"; | |
return result; | |
} | |
private int getTotalFrequentRenterPoints(){ | |
int result = 0; | |
Enumeration rentals = _rentals.elements(); | |
while (rentals.hasMoreElements()) { | |
Rental each = (Rental) rentals.nextElement(); | |
result += each.getFrequentRenterPoints(); | |
} | |
return result; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment