/** Interface for objects that can be sold. */
public interface Sellable {
/** description of the object */
public String getDescription();
/** list price in cents */
public int getPrice();
/** lowest price in cents we will accept */
public int getLowestPrice();
}