// Fig. 7.11: Shape.java
// Definition of interface Shape

interface Shape {
   double area();
   double volume();
   String getName();   
}
