GraphStream Users

Archives de la liste Aide


Info on terminal: org.graphstream.ui.layout.LayoutRunner run INFO: Layout 'SpringBox' process stopped.


Chronologique Discussions 
  • From: <greta.sorritelli AT studenti.unicam.it>
  • To: graphstream-users AT litislab.fr
  • Subject: Info on terminal: org.graphstream.ui.layout.LayoutRunner run INFO: Layout 'SpringBox' process stopped.
  • Date: Wed, 17 Nov 2021 11:07:56 +0100 (CET)

I use GraphStream in my application and to show graphs I use a FXViewer for
every graph. Initially I want to show the different graphs, without setting
positions of nodes, so I use the enableAutoLayout() method:


ArrayList<FxViewer> viewers = new ArrayList<>();
foreach(Graph graph : graphList) {
FxViewer viewer = new FxViewer(graph,
FxViewer.ThreadingModel.GRAPH_IN_GUI_THREAD);
viewer.addView(graph.getId(), new FxGraphRenderer());
viewer.enableAutoLayout();
viewers.add(viewer);
}


Next, I want to show the same graphs but with fixed positions setted manually
and so, for every graph, I disable the autoLayout to the related FXViewer.


viewers.forEach(Viewer::disableAutoLayout);


But, for every time I disable the autoLayout to a FXViewer in my console
appears this message:


org.graphstream.ui.layout.LayoutRunner run
INFO: Layout 'SpringBox' process stopped.


Is it a problem? Should I do something or I can just ignore this message?



Archives gérées par MHonArc 2.6.16.

Top of page