/** ThreeD.java -- in addition to area, we want the ability to determine * the volume. */ public interface ThreeD extends TwoD { public double findVolume(); }