Interface IUpdateProvider
-
- All Superinterfaces:
IRefreshableEditor
- All Known Implementing Classes:
ComboboxGUICellEditor,TextGUICellEditor
public interface IUpdateProvider extends IRefreshableEditor
Supports external updates to the created editors.- Author:
- Holger Eichelberger
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IDecisionVariablegetVariable()Returns the underlying decision variable.voidrefresh()Refreshes the contents of the editor.voidsetUpdateListener(IUpdateListener listener)Defines the update listener.
-
-
-
Method Detail
-
refresh
void refresh()
Description copied from interface:IRefreshableEditorRefreshes the contents of the editor.- Specified by:
refreshin interfaceIRefreshableEditor
-
setUpdateListener
void setUpdateListener(IUpdateListener listener)
Defines the update listener. The update listener will be disposed automatically .- Parameters:
listener- the update listener
-
getVariable
IDecisionVariable getVariable()
Returns the underlying decision variable.- Returns:
- the decision variable
-
-