Class CytoPanelComponentSelectedEvent

  • All Implemented Interfaces:
    CyEvent<Object>

    public final class CytoPanelComponentSelectedEvent
    extends AbstractCyEvent<Object>
    The event fired to indicate that a CytoPanelComponent has been selected.

    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>

    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 Detail

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

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