Package | Description |
---|---|
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.
|
Modifier and Type | Class and Description |
---|---|
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.
|
Modifier and Type | Method and Description |
---|---|
java.util.List<Message> |
ActionBeanContext.getMessages()
Returns the default set of non-error messages associated with the current request.
|
java.util.List<Message> |
ActionBeanContext.getMessages(java.lang.String key)
Returns the set of non-error messages associated with the current request under the
specified key.
|
Modifier and Type | Method and Description |
---|---|
protected java.util.List<Message> |
MessagesTag.getMessages()
Gets the list of messages that will be displayed by the tag.
|
Modifier and Type | Interface and Description |
---|---|
interface |
ValidationError
Interface to which all error objects in Stripes should conform.
|
Modifier and Type | Class and Description |
---|---|
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.