<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">public class Address implements java.io.Serializable
{
	private int streetNo;
	private int flatNo;
	private String city;

	public Address(int streetNo, int flatNo, String city)
	{
		this.streetNo	= streetNo;
		this.flatNo		= flatNo;
		this.city			= city;
	}

	public String toString()
	{
		return "\nstreetNo: "+streetNo +
					" \nflatNo: "+flatNo +
					" \ncity: "+city; 
	}
}
</pre></body></html>