Chainpublic interface Chain implements HandlerA Handler that executes a 'chain' of child handlers in order. |
Methods Summary |
---|
public void | addHandler(Handler handler)Adds a handler to the end of the chain. May not be called after invoke.
| public boolean | contains(Handler handler)Discover if a handler is in this chain.
| public Handler[] | getHandlers()Get the list of handlers in the chain. Is Handler[] the right form?
|
|