Package org.cytoscape.view.model
Interface CyNetworkViewFactory
-
public interface CyNetworkViewFactoryFactory forCyNetworkViewobjects. Modules which need to create view models should import this as a service.Module:
viewmodel-apiTo use this in your app, include the following dependency in your POM:
<dependency> <groupId>org.cytoscape</groupId> <artifactId>viewmodel-api</artifactId> </dependency>
Cytoscape Backwards Compatibility (API Interface): We expect that this interface will be used but not implemented by developers using this interface. As such, we reserve the right to add methods to the interface as part of minor version upgrades. We will not remove methods for any changes other than major version upgrades.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CyNetworkViewcreateNetworkView(CyNetwork network)Create aCyNetworkViewfrom aCyNetworkobject.
-
-
-
Method Detail
-
createNetworkView
CyNetworkView createNetworkView(CyNetwork network)
Create aCyNetworkViewfrom aCyNetworkobject. This method will create a view regardless of the viewThreshold property. This method only creates a CyNetworkView instance and does nothing with respect to visual style, layout, or CyNetworkViewManager.- Parameters:
network- Network for which the CyNetworkView is to be created- Returns:
- the view model for the network data model
-
-