public class SingleTable {
	
	// properties to store the table seat, height and quality
	int seat =0;
	int height =0;
	double quality =0.0;
	
	//constructor added to create table objects
	SingleTable(int seat, int height)
	{
		this.seat = seat;
		this.height = height;
	}
	
	public int getNumSeats()
	{
		return seat;
	}
	
	public int getHeight()
	{
		return height;
	}

	public double getViewQuality()
	{
		return quality;
	}
	
	public void setViewQuality(double value)
	{
		quality = value;
	}

}

