Package org.cytoscape.application.events
Class SetSelectedNetworkViewsEvent
java.lang.Object
org.cytoscape.event.AbstractCyEvent<CyApplicationManager>
org.cytoscape.application.events.SetSelectedNetworkViewsEvent
- All Implemented Interfaces:
CyEvent<CyApplicationManager>
An event that indicates that a collection of network views has been selected.
Cytoscape Backwards Compatibility (Final Class): This class is final and therefore can't be extended by users. This means that we may add methods for minor version updates. Methods will only be removed for major version updates.
Module: application-api
To use this in your app, include the following dependency in your POM:
<dependency> <groupId>org.cytoscape</groupId> <artifactId>application-api</artifactId> </dependency>
-
Constructor Summary
ConstructorDescriptionSetSelectedNetworkViewsEvent
(CyApplicationManager source, List<CyNetworkView> views) Constructor. -
Method Summary
Modifier and TypeMethodDescriptionReturns the list of network views that have been selected.Methods inherited from class org.cytoscape.event.AbstractCyEvent
getListenerClass, getSource
-
Constructor Details
-
SetSelectedNetworkViewsEvent
Constructor.- Parameters:
source
- The application manager firing the event.views
- A list of CyNetworkViews that have been selected.
-
-
Method Details
-
getNetworkViews
Returns the list of network views that have been selected.- Returns:
- The list of network views that have been selected.
-