Uses of Interface
net.sourceforge.stripes.action.Message

Packages that use Message
net.sourceforge.stripes.action This package defines the ActionBean interface and related classes and interfaces for writing ActionBeans. 
net.sourceforge.stripes.tag Contains implementation classes for all the Stripes custom tags and interfaces for overriding the strategy used to (re-)populate tag values and rendering tags in case of validation errors. 
net.sourceforge.stripes.validation This package contains interfaces and implementations of error message classes and of classes that convert Strings to rich objects, providing validation during the conversion. 
 

Uses of Message in net.sourceforge.stripes.action
 

Classes in net.sourceforge.stripes.action that implement Message
 class LocalizableMessage
          A non-error message class that can localize (or at least externalize) the message String in a resource bundle.
 class SimpleMessage
          A simple non-error message that uses the String supplied to it as the message (i.e.
 

Methods in net.sourceforge.stripes.action that return types with arguments of type Message
 List<Message> ActionBeanContext.getMessages()
          Returns the default set of non-error messages associated with the current request.
 List<Message> ActionBeanContext.getMessages(String key)
          Returns the set of non-error messages associated with the current request under the specified key.
 

Uses of Message in net.sourceforge.stripes.tag
 

Methods in net.sourceforge.stripes.tag that return types with arguments of type Message
protected  List<Message> MessagesTag.getMessages()
          Gets the list of messages that will be displayed by the tag.
 

Uses of Message in net.sourceforge.stripes.validation
 

Subinterfaces of Message in net.sourceforge.stripes.validation
 interface ValidationError
          Interface to which all error objects in Stripes should conform.
 

Classes in net.sourceforge.stripes.validation that implement Message
 class LocalizableError
          Provides a mechanism for creating localizable error messages for presentation to the user.
 class ScopedLocalizableError
          Provides a slightly more customizable approach to error messages.
 class SimpleError
          Validation error message that allows for supplying the error message at the time of creation - i.e.
 



? Copyright 2005-2006, Stripes Development Team.