Update manual_javavis.html

update doc
development
Andrea Accardo 2017-04-13 18:00:40 +02:00 committed by GitHub
parent f4ebac19df
commit 1703cbb7f2
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
{