Package org.cytoscape.view.model
Interface CyNetworkViewFactory
-
public interface CyNetworkViewFactory
Factory forCyNetworkView
objects. Modules which need to create view models should import this as a service.Module:
viewmodel-api
To 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 CyNetworkView
createNetworkView(CyNetwork network)
Create aCyNetworkView
from aCyNetwork
object.
-
-
-
Method Detail
-
createNetworkView
CyNetworkView createNetworkView(CyNetwork network)
Create aCyNetworkView
from aCyNetwork
object. 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
-
-