Uses of Interface
org.gephi.graph.api.GraphModel
-
Packages that use GraphModel Package Description org.gephi.appearance.api API for manipulating element appearance.org.gephi.datalab.api Data Laboratory API, all capabilites are exposed through various controllers.org.gephi.datalab.spi.columns org.gephi.graph.api Complete API description, whereGraphModel
is the entry point.org.gephi.layout.spi Interfaces for creating new layout algorithms.org.gephi.statistics.spi Interfaces for creating new statistics and metrics algorihms. -
-
Uses of GraphModel in org.gephi.appearance.api
Methods in org.gephi.appearance.api that return GraphModel Modifier and Type Method Description GraphModel
AppearanceModel. getGraphModel()
Returns the graph model this model is associated with. -
Uses of GraphModel in org.gephi.datalab.api
Methods in org.gephi.datalab.api with parameters of type GraphModel Modifier and Type Method Description void
DataLaboratoryHelper. executeAttributeColumnsManipulator(AttributeColumnsManipulator m, GraphModel graphModel, Table table, Column column)
Prepares the dialog UI of a AttributeColumnsManipulator if it has one and executes the manipulator in a separate Thread when the dialog is accepted or directly if there is no UI. -
Uses of GraphModel in org.gephi.datalab.spi.columns
Methods in org.gephi.datalab.spi.columns with parameters of type GraphModel Modifier and Type Method Description void
AttributeColumnsManipulatorUI. setup(AttributeColumnsManipulator m, GraphModel graphModel, Table table, Column column, DialogControls dialogControls)
Prepare this UI to be able to interact with its AttributeColumnsManipulator. -
Uses of GraphModel in org.gephi.graph.api
Methods in org.gephi.graph.api that return GraphModel Modifier and Type Method Description GraphModel
GraphController. getGraphModel()
Returns the graph model for the current workspace, ornull
if project is empty.GraphModel
GraphController. getGraphModel(Workspace workspace)
Returns the graph model for the givenworkspace
.GraphModel
GraphView. getGraphModel()
Gets the graph model this view belongs to.GraphModel
Graph. getModel()
Returns the model this graph belongs to.static GraphModel
GraphModel.Factory. newInstance()
Returns a new instance with default configuration.static GraphModel
GraphModel.Factory. newInstance(Configuration config)
Returns a new instance with the given configuration.static GraphModel
GraphModel.Serialization. read(DataInput input)
Read theinput
and return the read graph model.static GraphModel
GraphModel.Serialization. readWithoutVersionHeader(DataInput input, float graphStoreVersion)
Read theinput
and return the read graph model without an explicit version header in the input.Methods in org.gephi.graph.api with parameters of type GraphModel Modifier and Type Method Description static void
GraphModel.Serialization. write(DataOutput output, GraphModel graphModel)
WritegraphModel
tooutput
. -
Uses of GraphModel in org.gephi.layout.spi
Methods in org.gephi.layout.spi with parameters of type GraphModel Modifier and Type Method Description void
Layout. setGraphModel(GraphModel graphModel)
Injects the graph model for the graph this Layout should operate on. -
Uses of GraphModel in org.gephi.statistics.spi
Methods in org.gephi.statistics.spi with parameters of type GraphModel Modifier and Type Method Description void
DynamicStatistics. execute(GraphModel graphModel)
First method to be executed in the dynamic statistic process.void
Statistics. execute(GraphModel graphModel)
Executes the statistics algorithm.
-