631632633634635636637638639640641
{ final Component component = (Component)it.next(); if (component instanceof IFeedback) { component.attach(); } if (component instanceof MarkupContainer) { MarkupContainer container = (MarkupContainer)component;
643644645646647648649650651652653
// collect feedback container.visitChildren(IFeedback.class, new IVisitor() { public Object component(Component component) { component.attach(); return IVisitor.CONTINUE_TRAVERSAL; } }); }
621622623624625626627628629630631
633634635636637638639640641642643
601602603604605606607608609610611
613614615616617618619620621622623