Package org.cytoscape.work.swing
Interface DirectlyPresentableTunableHandler
-
public interface DirectlyPresentableTunableHandler
TODO: Missing documentationModule:
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 boolean
isForcedToSetDirectly()
If this method returns true, the boolean will be presented to set directly from GUI without being a part of a parent panel.boolean
setTunableDirectly(Window possibleParent)
This method allows us to bypass the normal tunable support when there is only one tunable in a Task.
-
-
-
Method Detail
-
setTunableDirectly
boolean setTunableDirectly(Window possibleParent)
This method allows us to bypass the normal tunable support when there is only one tunable in a Task.
-
isForcedToSetDirectly
boolean isForcedToSetDirectly()
If this method returns true, the boolean will be presented to set directly from GUI without being a part of a parent panel. This method can be controlled by the param field available in tunables. For instance, in Boolean tunable if parameter "ForceSetDirectly"="true" is defined, the tunable will be set directly.- Returns:
-
-