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.

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 Details

    • 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 Details

    • 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.