Package adams.gui.scripting
Class AbstractDataContainerUpdatingPostProcessor
- java.lang.Object
-
- adams.gui.scripting.AbstractDataContainerUpdatingPostProcessor
-
- All Implemented Interfaces:
Serializable
public abstract class AbstractDataContainerUpdatingPostProcessor extends Object implements Serializable
Abstract ancestor for classes that need to post-process the containers that the container manager got updated with.- Version:
- $Revision$
- Author:
- fracpete (fracpete at waikato dot ac dot nz)
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected AbstractCommandProcessor
m_Owner
the owning processor.
-
Constructor Summary
Constructors Constructor Description AbstractDataContainerUpdatingPostProcessor(AbstractCommandProcessor owner)
Initializes the post-processor.
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description AbstractCommandProcessor
getOwner()
Returns the owning scriptlet.abstract void
postProcess(List<? extends DataContainer> conts)
Post-processes the containers.
-
-
-
Field Detail
-
m_Owner
protected AbstractCommandProcessor m_Owner
the owning processor.
-
-
Constructor Detail
-
AbstractDataContainerUpdatingPostProcessor
public AbstractDataContainerUpdatingPostProcessor(AbstractCommandProcessor owner)
Initializes the post-processor.- Parameters:
owner
- the owning processor
-
-
Method Detail
-
getOwner
public AbstractCommandProcessor getOwner()
Returns the owning scriptlet.- Returns:
- the scriptlet
-
postProcess
public abstract void postProcess(List<? extends DataContainer> conts)
Post-processes the containers.- Parameters:
conts
- the containers to post-process
-
-