Package org.cytoscape.work.swing
Interface TunableUIHelper
-
public interface TunableUIHelper
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 (API Interface): We expect that this interface will be used but not implemented by developers using this interface. As such, we reserve the right to add methods to the interface as part of minor version upgrades. We will not remove methods for any changes other than major version upgrades.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Window
getParent()
Get the parent of the current Tunable dialog.void
refresh(Object objectWithTunables)
Recreate the Tunable UI.void
setModality(Dialog.ModalityType modality)
Set the modality of the parent dialog.void
update(Object objectWithTunables)
Update all of the tunable values.
-
-
-
Method Detail
-
getParent
Window getParent()
Get the parent of the current Tunable dialog. This may be used as the parent of a child dialog to avoid modality problems.- Returns:
- the parent window
-
setModality
void setModality(Dialog.ModalityType modality)
Set the modality of the parent dialog. By default, the Swing Tunable Dialog is APPLICATION_MODAL. This may not be ideal for circumstances where it's valid for the user to be able to manipulate the state of the network or table browser while the dialog is up. This method allows tha app writer to override the default modality.- Parameters:
modality
- the new modality for the dialog
-
update
void update(Object objectWithTunables)
Update all of the tunable values. This results in all of the update methods of each of the Tunables being called. The Object provided is usually the Task itself.- Parameters:
objectWithTunables
- the object containing the tunables
-
refresh
void refresh(Object objectWithTunables)
Recreate the Tunable UI. This might be used, for example, when a @ContainsTunable field is changed in response to a user input. As with update, the Object provided is usually the Task object itself.- Parameters:
objectWithTunables
- the object containing the tunables
-
-