package InterfaceDemo; /** * TwoTonTruck.java * * * Created: Tue Feb 13 20:58:08 2001 * * @author * @version * * The class of two-ton trucks. */ public class TwoTonTruck implements Weighable{ /** Constructs a two-ton truck. */ public TwoTonTruck (){ } /** Returns the weight of a two-ton truck---4,000 pounds. */ public double getWeight(){ return 4000.0; } }// TwoTonTruck