public void bogusLayout(MutableGraphModel model, AppContext context) {
BasicGraphController gc = new BasicGraphController();
context.getContentPane().add(new JGraph(new GraphPane(gc, model)));
RandomLayout random = new RandomLayout(new BasicLayoutTarget(gc));
random.layout(model.getRoot());
}
/**
* In this version you construct the graph widget with
* the model, and apply a layout to the graph once