Package org.apache.hop.core.listeners
Interface IContentChangedListener
-
- All Known Implementing Classes:
ContentChangedAdapter
public interface IContentChangedListenerThis listener will be called by the parent object when its content changes.
-
-
Method Summary
All Methods Instance Methods Abstract 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
void contentChanged(Object parentObject)
This method will be called when the parent object to which this listener is added, has been changed.- Parameters:
parentObject- The changed object.
-
contentSafe
void contentSafe(Object parentObject)
This method will be called when the parent object has been declared safe (or saved, persisted, ...)- Parameters:
parentObject- The safe object.
-
-