/**Interface for objects that can be transported*/ //Goodrich p. 81 package antiques; public interface Transportable { /**weight in grams */ public int weight(); /**whether the object is hazardous*/ public boolean isHazardous(); }