Interface IGUIConfigChangeListener
-
- All Known Implementing Classes:
AttributeValuesPage.AttributeTableEditor,ConfigurationTableEditor,ConfigurationTableEditorFactory.ConfigTableEditor
public interface IGUIConfigChangeListenerListener interface for informing listeners that theGUIConfigurationcontains unsaved data.- Author:
- El-Sharkawy
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidchanged(GUIConfiguration changedConfiguration)Will be called when something inside theGUIConfigurationwas changed.voidimtemsChanged(GUIConfiguration changedConfiguration)Will be called when something inside theGUIConfigurationwas changed.
-
-
-
Method Detail
-
changed
void changed(GUIConfiguration changedConfiguration)
Will be called when something inside theGUIConfigurationwas changed.- Parameters:
changedConfiguration- A reference of theGUIConfigurationwhich was changed.
-
imtemsChanged
void imtemsChanged(GUIConfiguration changedConfiguration)
Will be called when something inside theGUIConfigurationwas changed. Contrary tochanged(GUIConfiguration), this method should be used if only the view shall be updated.- Parameters:
changedConfiguration- A reference of theGUIConfigurationwhich was changed.
-
-