Class CytoPanelComponentSelectedEvent

java.lang.Object
org.cytoscape.event.AbstractCyEvent<Object>
org.cytoscape.application.swing.events.CytoPanelComponentSelectedEvent
All Implemented Interfaces:
CyEvent<Object>

public final class CytoPanelComponentSelectedEvent extends AbstractCyEvent<Object>
The event fired to indicate that a CytoPanelComponent 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: swing-application-api

To use this in your app, include the following dependency in your POM:

<dependency>
    <groupId>org.cytoscape</groupId>
    <artifactId>swing-application-api</artifactId>
</dependency>
  • Constructor Details

    • CytoPanelComponentSelectedEvent

      public CytoPanelComponentSelectedEvent(Object source, CytoPanel cp, int index)
      Constructor.
      Parameters:
      source - The object firing the event.
      cp - The CytoPanel on which a component was selected.
      index - The index of the CytoPanelComponent selected.
  • Method Details

    • getCytoPanel

      public CytoPanel getCytoPanel()
      Returns the CytoPanel on which a component was selected.
      Returns:
      the CytoPanel on which a component was selected.
    • getSelectedIndex

      public int getSelectedIndex()
      Returns the index of the CytoPanelComponent selected.
      Returns:
      the index of the CytoPanelComponent selected.