where is org.apache.struts.actions.LocalStrings ?
sanath_kJul 26 2008 — edited Sep 22 2008while going through source codes of DispatchAction of struts package, I found the following code block.
http://www.docjar.com/html/api/org/apache/struts/actions/DispatchAction.java.html
110 /**
111 * The message resources for this package.
112 */
113 protected static MessageResources messages =
114 MessageResources.getMessageResources
115 ("org.apache.struts.actions.LocalStrings");
Its API shows below story
getMessageResources
public static MessageResources getMessageResources(java.lang.String config)Create and return an instance of MessageResources for the created by the default MessageResourcesFactory.
Parameters:
config - Configuration parameter for this message bundle.
My Question is
org.apache.struts.actions.LocalStrings
What is this ? from where this is comming ?
I didn't find this LocalStrings as a part of Struts API.
Thanks.