public interface IChainable
Modifier and Type | Method and Description |
---|---|
IChainable |
getNext()
Should return the next component set by setNext()
|
boolean |
hasNext()
Should return true if a next component has been set.
|
void |
put(EnvironmentModel model)
Accept a model for processing.
|
void |
setNext(IChainable next)
Should set what getNext() returns.
|
void put(EnvironmentModel model)
model
- The model to be processedvoid setNext(IChainable next)
next
- The next component in the chain.IChainable getNext()
boolean hasNext()