// (c): Tuomas J. Lukka package gzz.view.buoy; import gzz.view.*; import gzz.vob.*; import gzz.*; /** An interface for link-making callbacks of cells. * This class can be used for cell-cell or cell-other * links. */ public interface CellBuoyViewLinker { /** Call the BuoyLinkListener with the relevant links. * For links to other cells from the given cell, * use cellNodeType as the BuoyViewNodeType. */ void doLinks(Cell c, VobScene vs, int cs, BuoyViewNodeType cellNodeType, BuoyLinkListener l); }