Package org.apache.hop.ui.core.gui
Class GuiCompositeWidgetsAdapter
- java.lang.Object
-
- org.apache.hop.ui.core.gui.GuiCompositeWidgetsAdapter
-
- All Implemented Interfaces:
IGuiPluginCompositeWidgetsListener
public abstract class GuiCompositeWidgetsAdapter extends Object implements IGuiPluginCompositeWidgetsListener
-
-
Constructor Summary
Constructors Constructor Description GuiCompositeWidgetsAdapter()
-
Method Summary
All Methods Instance Methods Concrete 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
public void widgetsCreated(GuiCompositeWidgets compositeWidgets)
Description copied from interface:IGuiPluginCompositeWidgetsListenerThis method is called when all the widgets are created- Specified by:
widgetsCreatedin interfaceIGuiPluginCompositeWidgetsListener
-
widgetsPopulated
public void widgetsPopulated(GuiCompositeWidgets compositeWidgets)
Description copied from interface:IGuiPluginCompositeWidgetsListenerThis method is called when all the widgets have received data, right before they're shown- Specified by:
widgetsPopulatedin interfaceIGuiPluginCompositeWidgetsListener
-
widgetModified
public void widgetModified(GuiCompositeWidgets compositeWidgets, org.eclipse.swt.widgets.Control changedWidget, String widgetId)
Description copied from interface:IGuiPluginCompositeWidgetsListenerThis method is called when a widget was modified- Specified by:
widgetModifiedin interfaceIGuiPluginCompositeWidgetsListener- Parameters:
compositeWidgets- All the widgets to referencechangedWidget- The widget that got changedwidgetId- The ID of the widget changed.
-
persistContents
public void persistContents(GuiCompositeWidgets compositeWidgets)
Description copied from interface:IGuiPluginCompositeWidgetsListenerWill be called when the changed data needs to be persisted- Specified by:
persistContentsin interfaceIGuiPluginCompositeWidgetsListener- Parameters:
compositeWidgets- The widgets
-
-