Package org.gephi.graph.api
Interface GraphController
-
public interface GraphControllerController 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 GraphModelgetGraphModel()Returns the graph model for the current workspace, ornullif project is empty.GraphModelgetGraphModel(Workspace workspace)Returns the graph model for the givenworkspace.
-
-
-
Method Detail
-
getGraphModel
GraphModel getGraphModel()
Returns the graph model for the current workspace, ornullif 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
-
-