<ac:structured-macro ac:name="unmigrated-wiki-markup" ac:schema-version="1" ac:macro-id="a7f9fff3-96ac-46af-b39d-97e9dc74dd54"><ac:plain-text-body><![CDATA[ | [http://jakarta.apache.org/commons/resources/ Home] | [wiki:Resources Wiki] [wiki | :ResourcesUserGuide Guide] | [wiki:ResourcesUserGuideIntro Getting Started] [ | wiki:ResourcesUserGuideMessages Messages] | [wiki:ResourcesUserGuideImplementations Standard] [wiki | :ResourcesUserGuideCreating Creating] | [http://jakarta.apache.org/commons/resources/apidocs/ API] [http://jakarta.apache.org/commons/resources/xref/ | Source] ]]></ac:plain-text-body></ac:structured-macro> |
...
2. Using Message and MessageList
2.1 Message
...
\[http://jakarta.apache.org/commons/resources/apidocs/org/apache/commons/resources/Message.html Message\] is an encapsulation of an individual message stored in a MessageList object, consisting of a message key (to be used to look up message text in an appropriate Resources implentation) plus up to four placeholder objects that can be used for parametric replacement in the message text.
Message defines two methods:
- getKey() - return the message key
- getValues() - return an array of replacement values
...
\[http://jakarta.apache.org/commons/resources/apidocs/org/apache/commons/resources/impl/BasicMessage.html BasicMessage\] is a basic implementation of a *Message* and provides convenience constructors for creating a Message with 1, 2, 3 or 4 replacement values.
For example, to create a message with two replacement values (100 and 200 in this case):
No Format |
---|
Message message = new BasicMessage("error.range", "100", "200"); |
2.2 Message List
...
\[http://jakarta.apache.org/commons/resources/apidocs/org/apache/commons/resources/MessageList.html MessageList\] a class that encapsulates messages. Messages can be either global or they are specific to a particular bean property. Each individual message is described by a *Message* object. MessageList, as its name implies, has similarities to a _java.util.List_ and provides methods for adding and retrieving messages.
\[http://jakarta.apache.org/commons/resources/apidocs/org/apache/commons/resources/impl/BasicMessageList.html BasicMessageList\] is a basic implementation of a *MessageList*. Wiki Markup
No Format |
---|
MessageList list = new BasicMessageList(); |
...
No Format |
---|
Iterator allMsgs = list.get(); Iterator orderNoMsgs = list.get("OrderNo"); Iterator globalMsgs = list.get(getGlobalMessageKey()); |
2.3 Messages
\[http://jakarta.apache.org/commons/resources/apidocs/org/apache/commons/resources/Messages.html Messages\] is a _wrapper_ around any \[http://jakarta.apache.org/commons/resources/apidocs/org/apache/commons/resources/Resources.html Resources\] object that performs message string lookups from the Resources instance, and parameter replacement via *java.text.MessageFormat*. For convenience, the same functionality is also available via static methods that accept a Resources parameter. Wiki Markup
First you need to create the Messages object...
...
No Format |
---|
String text = Messages.get(resources, Locale.US, "error.maximum", 1000); |
...
...
[http://jakarta.apache.org/commons/resources/ Home] | [wiki:Resources Wiki] [wiki | :ResourcesUserGuide Guide] | [wiki:ResourcesUserGuideIntro Getting Started] [ | wiki:ResourcesUserGuideMessages Messages] | [wiki:ResourcesUserGuideImplementations Standard] [wiki | :ResourcesUserGuideCreating Creating] | [http://jakarta.apache.org/commons/resources/apidocs/ API] [http://jakarta.apache.org/commons/resources/xref/ | Source] ]]></ac:plain-text-body></ac:structured-macro> |