Package org.gephi.datalab.spi
Interface DialogControls
-
public interface DialogControls
An instance of this interface is passed to any type of manipulator UI, allowing the UIs to enable/disable the dialog controls
For now allows to enable/disable the Ok button of the dialog
- Author:
- Eduardo Ramos
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
isOkButtonEnabled()
Indicates if ok button is enabled for this dialog at the momentvoid
setOkButtonEnabled(boolean enabled)
Enable or disable the Ok button of the dialog for the UI.
-
-
-
Method Detail
-
isOkButtonEnabled
boolean isOkButtonEnabled()
Indicates if ok button is enabled for this dialog at the moment- Returns:
true
if ok button is enabled
-
setOkButtonEnabled
void setOkButtonEnabled(boolean enabled)
Enable or disable the Ok button of the dialog for the UI.- Parameters:
enabled
-
-
-