//
// Shape.java
//


// An interface defines functions, but does not implement them.


public interface Shape
{
    public String getName();
    public double getPerimeter();
    public double getArea();
}


