* node and edge interactors.
*/
public BusContentionGraphController() {
// The interactors attached to nodes and edges
setNodeController(new BasicNodeController(this));
setEdgeController(new BasicEdgeController(this));
getNodeController().setNodeRenderer(new ThreadRenderer(this));
getEdgeController().setEdgeRenderer(new LocalEdgeRenderer());
}