package InterfaceDemo; /** * Weighable.java * * * Created: Tue Feb 13 19:38:35 2001 * * @author Stuart C. Shapiro * * The "class" of objects that are capable of being weighed. */ public interface Weighable { /** Returns the weight of a weighable object. */ double getWeight(); }// Weighable