Package org.apache.wicket.feedback

Examples of org.apache.wicket.feedback.ComponentFeedbackMessageFilter


   * @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));
  }
View Full Code Here


   * @param component
   *            The component to watch for messages
   */
  public void setIndicatorFor(final Component component)
  {
    filter = new ComponentFeedbackMessageFilter(component);
  }
View Full Code Here

TOP

Related Classes of org.apache.wicket.feedback.ComponentFeedbackMessageFilter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.