//Konstantin Voevodski, Lab4 CAS CS112 Spring 2010 public class Television implements ItemForSale{ String description; String brand; Double price; boolean inStock; Double screenSize; public Television(String description, String brand, Double price, boolean inStock, double screenSize){ this.description = description; this.brand = brand; this.price = price; this.inStock = inStock; this.screenSize = screenSize; } public String getDescription(){ return description; } public String getBrand(){ return brand; } public Double getPrice(){ return price; } public boolean isInStock(){ return inStock; } public Double getScreenSize(){ return screenSize; } }