Package org.apache.hop.ui.core.gui
Interface IGuiPluginCompositeWidgetsListener
-
- All Known Implementing Classes:
ExplorerPerspectiveConfigPlugin,GuiCompositeWidgetsAdapter,WelcomeDialogOptions
public interface IGuiPluginCompositeWidgetsListener
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidpersistContents(GuiCompositeWidgets compositeWidgets)Will be called when the changed data needs to be persistedvoidwidgetModified(GuiCompositeWidgets compositeWidgets, org.eclipse.swt.widgets.Control changedWidget, String widgetId)This method is called when a widget was modifiedvoidwidgetsCreated(GuiCompositeWidgets compositeWidgets)This method is called when all the widgets are createdvoidwidgetsPopulated(GuiCompositeWidgets compositeWidgets)This method is called when all the widgets have received data, right before they're shown
-
-
-
Method Detail
-
widgetsCreated
void widgetsCreated(GuiCompositeWidgets compositeWidgets)
This method is called when all the widgets are created- Parameters:
compositeWidgets-
-
widgetsPopulated
void widgetsPopulated(GuiCompositeWidgets compositeWidgets)
This method is called when all the widgets have received data, right before they're shown- Parameters:
compositeWidgets-
-
widgetModified
void widgetModified(GuiCompositeWidgets compositeWidgets, org.eclipse.swt.widgets.Control changedWidget, String widgetId)
This method is called when a widget was modified- Parameters:
compositeWidgets- All the widgets to referencechangedWidget- The widget that got changedwidgetId- The ID of the widget changed.
-
persistContents
void persistContents(GuiCompositeWidgets compositeWidgets)
Will be called when the changed data needs to be persisted- Parameters:
compositeWidgets- The widgets
-
-