last = new Listener() {
public void render(Context context) throws IOException, ParseException {
if (next == null) {
Listener listener = (Listener) context.get(LISTENER_KEY);
if (listener != null) {
current.render(context, listener);
}
} else {
current.render(context, next);
}
}