// (c) Tuomas J. Lukka package gzz.view; import gzz.*; import gzz.vob.*; /** An interface for code to be run when a cell has been placed in a box. */ public interface CellPlacementHook { String rcsid = "$Id: CellPlacementHook.java,v 1.1 2002/10/29 14:13:39 tjl Exp $"; /** A cell was placed. */ void placed(Cell c, VobScene sc, Box b, ViewContext context); }