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>
public final class SetSelectedNetworkViewsEvent extends AbstractCyEvent<CyApplicationManager>
An event that indicates that a collection of network views has been selected.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>
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.
-
-
Constructor Summary
Constructors Constructor Description SetSelectedNetworkViewsEvent(CyApplicationManager source, List<CyNetworkView> views)
Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<CyNetworkView>
getNetworkViews()
Returns the list of network views that have been selected.-
Methods inherited from class org.cytoscape.event.AbstractCyEvent
getListenerClass, getSource
-
-
-
-
Constructor Detail
-
SetSelectedNetworkViewsEvent
public SetSelectedNetworkViewsEvent(CyApplicationManager source, List<CyNetworkView> views)
Constructor.- Parameters:
source
- The application manager firing the event.views
- A list of CyNetworkViews that have been selected.
-
-
Method Detail
-
getNetworkViews
public List<CyNetworkView> getNetworkViews()
Returns the list of network views that have been selected.- Returns:
- The list of network views that have been selected.
-
-