1 /** 2 * Copyright (c) 2004-2006 Regents of the University of California. 3 * See "license-prefuse.txt" for licensing terms. 4 */ 5 package prefuse.util.display; 6 7 import prefuse.Display; 8 9 /** 10 * Listener interface for monitoring changes to the space occupied by 11 * VisualItems within the space of a Display. 12 * 13 * @author <a HREF="http://jheer.org">jeffrey heer</a> 14 */ 15 public interface ItemBoundsListener { 16 17 /** 18 * Signals a change in the total bounds occupied by VisualItems in 19 * a particular Display. 20 * @param d the Display whose item bounds has changed 21 */ 22 public void itemBoundsChanged(Display d); 23 24 } // end of interface ItemBoundsListener 25