01: package org.enhydra.jawe.components.graph;
02:
03: import org.jgraph.graph.CellMapper;
04: import org.jgraph.graph.CellView;
05: import org.jgraph.graph.GraphModel;
06:
07: /**
08: * Interface for representing a view for a JGraph's Participant objects.
09: *
10: * @author Sasa Bojanic
11: */
12: public interface GraphParticipantViewInterface extends CellView {
13:
14: void refreshChildViews(GraphModel model, CellMapper mapper);
15:
16: }
|