37383940414243
* @param id the component id. * @param filter the component for which the messages need to be filtered. */ public ComponentFeedbackPanel(String id, Component filter) { super(id, new ComponentFeedbackMessageFilter(filter)); }
64656667686970
* @param component * The component to watch for messages */ public void setIndicatorFor(final Component component) { filter = new ComponentFeedbackMessageFilter(component); }