public class Table extends Furniture {
	private Shape tableShape; 

	public Table(String name, String itemID, String material, double price, Shape tableShape) {
		super(name, itemID, material, price);
		this.tableShape = tableShape;
	}
	
	public String toString() {
		String s = super.toString();
		s += tableShape.toString() + "\n";
		return s;
	}
}