Package org.apache.hop.core.util
Class PluginPropertyHandler.AbstractHandler
- java.lang.Object
-
- org.apache.hop.core.util.PluginPropertyHandler.AbstractHandler
-
- All Implemented Interfaces:
org.apache.commons.collections4.Closure
- Direct Known Subclasses:
PluginPropertyHandler.AppendXml,PluginPropertyHandler.Fail,PluginPropertyHandler.LoadXml,PluginPropertyHandler.ReadFromPreferences,PluginPropertyHandler.SaveToPreferences
- Enclosing class:
- PluginPropertyHandler
public abstract static class PluginPropertyHandler.AbstractHandler extends Object implements org.apache.commons.collections4.Closure
-
-
Constructor Summary
Constructors Constructor Description AbstractHandler()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description voidexecute(Object property)protected abstract voidhandle(IPluginProperty property)Handle property.
-
-
-
Method Detail
-
execute
public final void execute(Object property) throws IllegalArgumentException, org.apache.commons.collections4.FunctorException
- Specified by:
executein interfaceorg.apache.commons.collections4.Closure- Throws:
IllegalArgumentException- if property is null.org.apache.commons.collections4.FunctorException- if HopException in handle thrown.- See Also:
org.apache.commons.collections.Closure#execute(java.lang.Object)
-
handle
protected abstract void handle(IPluginProperty property) throws HopException
Handle property.- Parameters:
property- property.- Throws:
HopException- ...
-
-