/**
 * Requirements of Taxable objects
 */
public interface Taxable
{
    /**
     * Get the tax owed on this Object
     *
     * @return   The tax owed
     */
    public abstract double tax();    
}
