if (cell instanceof DefaultPort) view = createPortView(cell);
else if (model.isEdge(cell)) view = new ArcView(cell);
else view = createVertexView(cell);
// cm.putMapping(cell, view);
// view.refresh(true); // Create Dependent Views
view.update(editor.getGraph().getGraphLayoutCache());
return view;
}
protected EdgeView createEdgeView(Object cell)
{