package graph; /** The interface of a kind of object that extracts or sets a weight * on an object of type ITEM. * @author P. N. Hilfinger */ public interface Weighter extends Weighting { /** Set the value of getWeight(X) to V. */ void setWeight(Item x, double v); }