public class GraphView {
static public IGraphView newGraphView(IGraphView view, StorableSubGraph subGraph) {
return new JGraphView((JGraphView)view, subGraph);
}
static public IGraphView newGraphView(StorableSubGraph g, AUserInterface userInterface) {
return new JGraphView(g, userInterface);
}