Class CytoPanelComponentSelectedEvent
java.lang.Object
org.cytoscape.event.AbstractCyEvent<Object>
org.cytoscape.application.swing.events.CytoPanelComponentSelectedEvent
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 Summary
ConstructorDescriptionCytoPanelComponentSelectedEvent
(Object source, CytoPanel cp, int index) Constructor. -
Method Summary
Modifier and TypeMethodDescriptionReturns the CytoPanel on which a component was selected.int
Returns the index of the CytoPanelComponent selected.Methods inherited from class org.cytoscape.event.AbstractCyEvent
getListenerClass, getSource
-
Constructor Details
-
CytoPanelComponentSelectedEvent
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
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.
-