/** 
 An interface for methods that return
 the perimeter and area of an object.
*/
public interface Measurable
{
    /** Returns the perimeter. */
    public double getPerimeter();
	
    /** Returns the area. */
    public double getArea();
}
