Package org.cytoscape.work.swing
Interface RequestsUIHelper
-
public interface RequestsUIHelper
Interface to indicate that an app wants to have a UI helper provided.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>
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.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
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 Detail
-
setUIHelper
void 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. 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
-
-