Package org.gephi.graph.api
Interface GraphController
-
public interface GraphController
Controller that maintain the graph models, one per Workspace.This controller is a service and can therefore be found in Lookup:
GraphController gc = Lookup.getDefault().lookup(GraphController.class);
- Author:
- Mathieu Bastian
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GraphModel
getGraphModel()
Returns the graph model for the current workspace, ornull
if project is empty.GraphModel
getGraphModel(Workspace workspace)
Returns the graph model for the givenworkspace
.
-
-
-
Method Detail
-
getGraphModel
GraphModel getGraphModel()
Returns the graph model for the current workspace, ornull
if project is empty.- Returns:
- the current graph model
-
getGraphModel
GraphModel getGraphModel(Workspace workspace)
Returns the graph model for the givenworkspace
.- Parameters:
workspace
- the workspace that graph model is to be returned- Returns:
- the
workspace
's graph model
-
-