Package org.apache.hop.core.listeners
Class ContentChangedAdapter
- java.lang.Object
-
- org.apache.hop.core.listeners.ContentChangedAdapter
-
- All Implemented Interfaces:
IContentChangedListener
public class ContentChangedAdapter extends Object implements IContentChangedListener
- See Also:
IContentChangedListener
-
-
Constructor Summary
Constructors Constructor Description ContentChangedAdapter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidcontentChanged(Object parentObject)This method will be called when the parent object to which this listener is added, has been changed.voidcontentSafe(Object parentObject)This method will be called when the parent object has been declared safe (or saved, persisted, ...)
-
-
-
Method Detail
-
contentChanged
public void contentChanged(Object parentObject)
Description copied from interface:IContentChangedListenerThis method will be called when the parent object to which this listener is added, has been changed.- Specified by:
contentChangedin interfaceIContentChangedListener- Parameters:
parentObject- The changed object.
-
contentSafe
public void contentSafe(Object parentObject)
Description copied from interface:IContentChangedListenerThis method will be called when the parent object has been declared safe (or saved, persisted, ...)- Specified by:
contentSafein interfaceIContentChangedListener- Parameters:
parentObject- The safe object.
-
-