Package org.cytoscape.work.swing
Interface RequestsUIHelper
public interface RequestsUIHelper
Interface to indicate that an app wants to have a UI helper
provided.
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: work-swing-api
To use this in your app, include the following dependency in your POM:
<dependency> <groupId>org.cytoscape</groupId> <artifactId>work-swing-api</artifactId> </dependency>
-
Method Summary
Modifier and TypeMethodDescriptionvoid
setUIHelper
(TunableUIHelper helper) This method will be called by the Tunable UI handler to provide a helper object that might be used for some interaction with the Tunable UI.
-
Method Details
-
setUIHelper
This method will be called by the Tunable UI handler to provide a helper object that might be used for some interaction with the Tunable UI. Note that there is no guarantee that this will ever get called. Non-swing user interfaces, in particular (e.g. command line) will not provide a TunableUIHelper.- Parameters:
helper
- the helper object
-