Package org.cytoscape.application.events
Interface CyShutdownRequestedListener
- All Superinterfaces:
CyListener
The listener for the
CyShutdownRequestedEvent
.
Apps should not listen for CyShutdownRequestedEvent
. It is used internally by Cytoscape to prompt the user
if they want to cancel exiting Cytoscape. Apps should only use CyShutdownListener
to be notified
of shutdown.Cytoscape Backwards Compatibility (SPI Interface): We expect that this interface will be implemented. Therefore to maintain backwards compatibility this interface will only be modified 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>
Cytoscape Backwards Compatibility (DO NOT USE): This interface may change or be removed in future minor version upgrades of Cytoscape. It is not safe for Apps to reference or implement this interface.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Process the specified event.
-
Method Details
-
handleEvent
Process the specified event.- Parameters:
e
- The event being processed.
-