[ create a new paste ] login | about

Link: http://codepad.org/XQIviwcu    [ raw code | fork ]

Plain Text, pasted on Apr 22:
public class Warehouse
{
	// Attributes
	private String warehouseID; 
	private String city; 
	private String state;
	
	// Parameterized Constructor
	public Warehouse(String warehouseID, String city, String state)
	{
		super();
		this.warehouseID = warehouseID;
		this.city = city;
		this.state = state;
	}
	
	// Getters
	public String getWarehouseID()
	{
		return warehouseID;
	}

	public String getCity()
	{
		return city;
	}

	public String getState()
	{
		return state;
	} 
	
}


Create a new paste based on this one


Comments: