//(c): Tuomas J. Lukka and Matti J. Katila package org.fenfire.view; import org.nongnu.libvob.*; import com.hp.hpl.mesa.rdf.jena.model.*; /** An interface for code to be run when a cell has been placed in a box. */ public interface NodePlacementHook { String rcsid = "$Id: NodePlacementHook.java,v 1.1 2003/03/26 00:36:06 mudyc Exp $"; /** A node was placed. */ // XXX void placed(RDFNode node, VobScene sc, int b, ViewContext context); void placed(RDFNode node, VobScene sc, int b); }