Return to Snippet

Revision: 19709
at October 29, 2009 07:08 by joshnunn


Initial Code
public String toString() {
	return super.toString() +
		" [Place: " +
		place +
		"; State: " +
		state +
		"; Postcode: " +
		postcode +
		"; Country: " +
		country;
}

Initial URL


Initial Description
This was my toString method that got me a "Satisfactory" rather than "Outstanding"

Initial Title
toString (satisfactory)

Initial Tags


Initial Language
Java