Merge pull request #70 from andrea11/patch-1

Update manual_javavis.html
development
David Benson 2017-04-13 17:10:30 +01:00 committed by GitHub
commit 705e3c6bf0
1 changed files with 3 additions and 3 deletions

View File

@ -397,9 +397,9 @@ model. In the HelloWorld example we saw this code:</p>
graph.getModel().beginUpdate();
try
{
Object v1 = graph.addVertex(parent, null, "Hello,", 20, 20, 80, 30);
Object v2 = graph.addVertex(parent, null, "World!", 200, 150, 80, 30);
Object e1 = graph.addEdge(parent, null, "", v1, v2);
Object v1 = graph.insertVertex(parent, null, "Hello,", 20, 20, 80, 30);
Object v2 = graph.insertVertex(parent, null, "World!", 200, 150, 80, 30);
Object e1 = graph.insertEdge(parent, null, "", v1, v2);
}
finally
{