// This appears in Core Web Programming from
// Prentice Hall Publishers, and may be freely used
// or adapted. 1997 Marty Hall, hall@apl.jhu.edu.

/** Used in classes with measurable areas. */

public interface Measurable {
  double getArea();
}

