01: package org.uispec4j.interception.handlers;
02:
03: import org.uispec4j.Window;
04:
05: public abstract class AbstractInterceptionHandlerDecorator implements
06: InterceptionHandler {
07:
08: private InterceptionHandler innerHandler;
09:
10: protected AbstractInterceptionHandlerDecorator(
11: InterceptionHandler innerHandler) {
12: this .innerHandler = innerHandler;
13: }
14:
15: public void process(final Window window) {
16: innerHandler.process(window);
17: }
18: }
|