Revision: 19708
Updated Code
at October 29, 2009 07:07 by joshnunn
Updated Code
public String toString() {
return super.toString() +
" [Place: " + place +
"; State: " + state +
"; Postcode: " + postcode +
"; Country: " + country;
}
Revision: 19707
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at October 29, 2009 07:02 by joshnunn
Initial Code
public String toString() {
return super.toString() +
" [Place: " +
place +
"; State: " +
state +
"; Postcode: " +
postcode +
"; Country: " +
country;
}
Initial URL
Initial Description
This was how I should have done it.
Initial Title
toString (outstanding)
Initial Tags
Initial Language
Java