Uses of Class
org.apache.wicket.feedback.FeedbackMessage
-
Packages that use FeedbackMessage Package Description org.apache.wicket.feedback Classes related to showing user feedback, generally as the result of form submission and/or validation.org.apache.wicket.markup.html.panel Panel components.org.apache.wicket.util.tester A package with utility classes to ease unit testing of Wicket applications without the need for a servlet container. -
-
Uses of FeedbackMessage in org.apache.wicket.feedback
Methods in org.apache.wicket.feedback that return FeedbackMessage Modifier and Type Method Description FeedbackMessageFeedbackMessages. first()Retrieves the first messageFeedbackMessageFeedbackMessages. first(int level)Retrieves the first message that level is greater than or equal to the given levelMethods in org.apache.wicket.feedback that return types with arguments of type FeedbackMessage Modifier and Type Method Description java.util.List<FeedbackMessage>FeedbackCollector. collect()Collects all feedback messagesjava.util.List<FeedbackMessage>FeedbackCollector. collect(IFeedbackMessageFilter filter)Collects all feedback messages that match the specifiedfilterprotected java.util.List<FeedbackMessage>FeedbackMessagesModel. collectMessages(Component pageResolvingComponent, IFeedbackMessageFilter filter)Collects feedback messagesjava.util.List<FeedbackMessage>FeedbackMessagesModel. getObject()java.util.Comparator<FeedbackMessage>FeedbackMessagesModel. getSortingComparator()java.util.Iterator<FeedbackMessage>FeedbackMessages. iterator()Gets an iterator over stored messagesjava.util.List<FeedbackMessage>FeedbackMessages. messages(IFeedbackMessageFilter filter)Gets a list of messages from the page using a filter.protected java.util.List<FeedbackMessage>FeedbackMessagesModel. processMessages(java.util.List<FeedbackMessage> messages)Override this method to post process to the FeedbackMessage list.java.util.List<FeedbackMessage>FeedbackMessages. toList()Retrieves all stored messages as an unmodifiable listMethods in org.apache.wicket.feedback with parameters of type FeedbackMessage Modifier and Type Method Description booleanComponentFeedbackMessageFilter. accept(FeedbackMessage message)booleanContainerFeedbackMessageFilter. accept(FeedbackMessage message)booleanDefaultCleanupFeedbackMessageFilter. accept(FeedbackMessage message)booleanErrorLevelFeedbackMessageFilter. accept(FeedbackMessage message)booleanExactLevelFeedbackMessageFilter. accept(FeedbackMessage message)booleanIFeedbackMessageFilter. accept(FeedbackMessage message)voidFeedbackMessages. add(FeedbackMessage message)Adds a message.default booleanIFeedbackMessageFilter. test(FeedbackMessage message)Method parameters in org.apache.wicket.feedback with type arguments of type FeedbackMessage Modifier and Type Method Description protected java.util.List<FeedbackMessage>FeedbackMessagesModel. processMessages(java.util.List<FeedbackMessage> messages)Override this method to post process to the FeedbackMessage list.voidFeedbackMessagesModel. setObject(java.util.List<FeedbackMessage> object)FeedbackMessagesModelFeedbackMessagesModel. setSortingComparator(java.util.Comparator<FeedbackMessage> sortingComparator)Sets the comparator used for sorting the messages. -
Uses of FeedbackMessage in org.apache.wicket.markup.html.panel
Methods in org.apache.wicket.markup.html.panel that return types with arguments of type FeedbackMessage Modifier and Type Method Description protected java.util.List<FeedbackMessage>FeedbackPanel. getCurrentMessages()Gets the currently collected messages for this panel.java.util.Comparator<FeedbackMessage>FeedbackPanel. getSortingComparator()protected ListItem<FeedbackMessage>FeedbackPanel. newMessageItem(int index, IModel<FeedbackMessage> itemModel)Allows to define the listItem to use in the feedback's message list.Methods in org.apache.wicket.markup.html.panel with parameters of type FeedbackMessage Modifier and Type Method Description protected java.lang.StringFeedbackPanel. getCSSClass(FeedbackMessage message)Gets the css class for the given message.protected ComponentFeedbackPanel. newMessageDisplayComponent(java.lang.String id, FeedbackMessage message)Generates a component that is used to display the message inside the feedback panel.Method parameters in org.apache.wicket.markup.html.panel with type arguments of type FeedbackMessage Modifier and Type Method Description protected ListItem<FeedbackMessage>FeedbackPanel. newMessageItem(int index, IModel<FeedbackMessage> itemModel)Allows to define the listItem to use in the feedback's message list.FeedbackPanelFeedbackPanel. setSortingComparator(java.util.Comparator<FeedbackMessage> sortingComparator)Sets the comparator used for sorting the messages. -
Uses of FeedbackMessage in org.apache.wicket.util.tester
Methods in org.apache.wicket.util.tester that return types with arguments of type FeedbackMessage Modifier and Type Method Description java.util.List<FeedbackMessage>BaseWicketTester. getFeedbackMessages(IFeedbackMessageFilter filter)RetrievesFeedbackMessages.
-