|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use MessageResources | |
---|---|
org.apache.struts.action | The action package is the core of the struts framework, providing the "Controller" aspect of a MVC model. |
org.apache.struts.actions | The actions package provides special adapters between the incoming HTTP request and the corresponding business logic. |
org.apache.struts.chain.contexts | This package provides objects that encapsulate access to the request and session-scoped resources to service command processing. |
org.apache.struts.config | The "config" package contains configuration objects that correspond to
elements that may be specified in the struts-config.xml
module configuration file. |
org.apache.struts.faces.renderer | |
org.apache.struts.faces.util | |
org.apache.struts.scripting | The scripting package is the core of the Struts Scripting framework, which builds on Struts Action to allow Struts Actions be written with the scripting language of your choice. |
org.apache.struts.taglib | |
org.apache.struts.taglib.bean | The "struts-bean" tag library contains JSP custom tags useful in defining new beans (in any desired scope) from a variety of possible sources, as well as a tag to render a particular bean (or bean property) to the output response. |
org.apache.struts.taglib.html | The "struts-html" tag library contains JSP custom tags useful in creating dynamic HTML user interfaces, including input forms. |
org.apache.struts.taglib.logic | The "struts-logic" tag library contains tags that are useful in managing conditional generation of output text, looping over object collections for repetitive generation of output text, and application flow management. |
org.apache.struts.util | The Utilities package provides a variety of families of classes, to solve problems that are commonly encountered in building web applications. |
org.apache.struts.validator | The validator package provides a series of classes to validate
ActionForm type of input. |
Uses of MessageResources in org.apache.struts.action |
---|
Fields in org.apache.struts.action declared as MessageResources | |
---|---|
protected MessageResources |
ActionServlet.internal
The resources object for our internal resources. |
Methods in org.apache.struts.action that return MessageResources | |
---|---|
protected MessageResources |
RequestProcessor.getInternal()
Return the MessageResources instance containing our
internal message strings. |
MessageResources |
ActionServlet.getInternal()
Return the MessageResources instance containing our
internal message strings. |
protected MessageResources |
Action.getResources(HttpServletRequest request)
Return the default message resources for the current module. |
protected MessageResources |
Action.getResources(HttpServletRequest request,
String key)
Return the specified message resources for the current module. |
Uses of MessageResources in org.apache.struts.actions |
---|
Fields in org.apache.struts.actions declared as MessageResources | |
---|---|
protected static MessageResources |
BaseAction.messages
The message resources for this package. |
protected static MessageResources |
ActionDispatcher.messages
The message resources for this package. |
Uses of MessageResources in org.apache.struts.chain.contexts |
---|
Methods in org.apache.struts.chain.contexts that return MessageResources | |
---|---|
MessageResources |
ServletActionContext.getMessageResources()
|
MessageResources |
ActionContextBase.getMessageResources()
|
MessageResources |
ActionContext.getMessageResources()
Return the default message resources for the current module. |
MessageResources |
ServletActionContext.getMessageResources(String key)
|
MessageResources |
ActionContextBase.getMessageResources(String key)
|
MessageResources |
ActionContext.getMessageResources(String key)
Return the specified message resources for the current module. |
Methods in org.apache.struts.chain.contexts with parameters of type MessageResources | |
---|---|
void |
ServletActionContext.setMessageResources(MessageResources resources)
|
void |
ActionContextBase.setMessageResources(MessageResources messageResources)
|
void |
ActionContext.setMessageResources(MessageResources resources)
Set the default message resources for the current module. |
void |
ServletActionContext.setMessageResources(String key,
MessageResources resources)
Store the mesasage resources for the current module under the given request attribute key. |
Uses of MessageResources in org.apache.struts.config |
---|
Methods in org.apache.struts.config that return MessageResources | |
---|---|
MessageResources |
ConfigHelperInterface.getMessageResources()
The application resources for this application. |
MessageResources |
ConfigHelper.getMessageResources()
The application resources for this application. |
Uses of MessageResources in org.apache.struts.faces.renderer |
---|
Fields in org.apache.struts.faces.renderer declared as MessageResources | |
---|---|
protected static MessageResources |
ErrorsRenderer.dummy
The dummy message resources for this package. |
Methods in org.apache.struts.faces.renderer that return MessageResources | |
---|---|
protected MessageResources |
ErrorsRenderer.resources(javax.faces.context.FacesContext context,
javax.faces.component.UIComponent component)
Return the MessageResources bundle from which
we should return any Struts based error messages. |
Uses of MessageResources in org.apache.struts.faces.util |
---|
Methods in org.apache.struts.faces.util that return MessageResources | |
---|---|
MessageResources |
StrutsContext.getMessageResources()
Return the MessageResources instance for the
application module that is processing this request (if any). |
Constructors in org.apache.struts.faces.util with parameters of type MessageResources | |
---|---|
MessagesMap(MessageResources messages,
Locale locale)
Construct a new MessagesMap instance that wraps the
specified MessageResources instance, and returns messages
for the specified Locale . |
Uses of MessageResources in org.apache.struts.scripting |
---|
Methods in org.apache.struts.scripting that return MessageResources | |
---|---|
MessageResources |
StrutsInfo.getMessages()
Gets the message resources. |
Methods in org.apache.struts.scripting with parameters of type MessageResources | |
---|---|
void |
StrutsInfo.setMessages(MessageResources res)
Sets the message resources. |
Constructors in org.apache.struts.scripting with parameters of type MessageResources | |
---|---|
StrutsInfo(ScriptAction action,
ActionMapping mapping,
ActionForm form,
MessageResources res)
Constructor. |
Uses of MessageResources in org.apache.struts.taglib |
---|
Methods in org.apache.struts.taglib that return MessageResources | |
---|---|
MessageResources |
TagUtils.retrieveMessageResources(PageContext pageContext,
String bundle,
boolean checkPageScope)
Returns the appropriate MessageResources object for the current module and the given bundle. |
Uses of MessageResources in org.apache.struts.taglib.bean |
---|
Fields in org.apache.struts.taglib.bean declared as MessageResources | |
---|---|
protected static MessageResources |
WriteTag.messages
The message resources for this package. |
protected static MessageResources |
StrutsTag.messages
The message resources for this package. |
protected static MessageResources |
SizeTag.messages
The message resources for this package. |
protected static MessageResources |
ResourceTag.messages
The message resources for this package. |
protected static MessageResources |
ParameterTag.messages
The message resources for this package. |
protected static MessageResources |
PageTag.messages
The message resources for this package. |
protected static MessageResources |
MessageTag.messages
The message resources for this package. |
protected static MessageResources |
IncludeTag.messages
The message resources for this package. |
protected static MessageResources |
HeaderTag.messages
The message resources for this package. |
protected static MessageResources |
DefineTag.messages
The message resources for this package. |
protected static MessageResources |
CookieTag.messages
The message resources for this package. |
Uses of MessageResources in org.apache.struts.taglib.html |
---|
Fields in org.apache.struts.taglib.html declared as MessageResources | |
---|---|
protected static MessageResources |
MessagesTag.messageResources
The message resources for this package. |
protected static MessageResources |
SubmitTag.messages
The message resources for this package. |
protected static MessageResources |
SelectTag.messages
The message resources for this package. |
protected static MessageResources |
RadioTag.messages
The message resources for this package. |
protected static MessageResources |
ParamTag.messages
The message resources for this package. |
protected static MessageResources |
OptionTag.messages
The message resources for this package. |
protected static MessageResources |
OptionsTag.messages
The message resources for this package. |
protected static MessageResources |
OptionsCollectionTag.messages
The message resources for this package. |
protected static MessageResources |
MultiboxTag.messages
The message resources for this package. |
protected static MessageResources |
LinkTag.messages
The message resources for this package. |
protected static MessageResources |
ImgTag.messages
The message resources for this package. |
protected static MessageResources |
HtmlTag.messages
The message resources for this package. |
protected static MessageResources |
FormTag.messages
The message resources for this package. |
protected static MessageResources |
ErrorsTag.messages
The message resources for this package. |
protected static MessageResources |
CheckboxTag.messages
The message resources for this package. |
protected static MessageResources |
BaseTag.messages
The message resources for this package. |
protected static MessageResources |
BaseInputTag.messages
The message resources for this package. |
protected static MessageResources |
BaseHandlerTag.messages
The message resources for this package. |
Uses of MessageResources in org.apache.struts.taglib.logic |
---|
Fields in org.apache.struts.taglib.logic declared as MessageResources | |
---|---|
protected static MessageResources |
RedirectTag.messages
The message resources for this package. |
protected static MessageResources |
IterateTag.messages
The message resources for this package. |
protected static MessageResources |
ForwardTag.messages
The message resources for this package. |
protected static MessageResources |
ConditionalTagBase.messages
The message resources for this package. |
protected static MessageResources |
CompareTagBase.messages
The message resources for this package. |
Uses of MessageResources in org.apache.struts.util |
---|
Subclasses of MessageResources in org.apache.struts.util | |
---|---|
class |
PropertyMessageResources
Concrete subclass of MessageResources that reads message keys
and corresponding strings from named property resources in a similar manner
(see modes below) that java.util.PropertyResourceBundle does. |
Fields in org.apache.struts.util declared as MessageResources | |
---|---|
protected static MessageResources |
ResponseUtils.messages
The message resources for this package. |
Methods in org.apache.struts.util that return MessageResources | |
---|---|
MessageResources |
PropertyMessageResourcesFactory.createResources(String config)
Create and return a newly instansiated MessageResources . |
abstract MessageResources |
MessageResourcesFactory.createResources(String config)
Create and return a newly instansiated MessageResources . |
static MessageResources |
MessageResources.getMessageResources(String config)
Create and return an instance of MessageResources for the
created by the default MessageResourcesFactory . |
Uses of MessageResources in org.apache.struts.validator |
---|
Methods in org.apache.struts.validator that return MessageResources | |
---|---|
static MessageResources |
Resources.getMessageResources(HttpServletRequest request)
Retrieve MessageResources for the module. |
static MessageResources |
Resources.getMessageResources(ServletContext application,
HttpServletRequest request,
String bundle)
Retrieve MessageResources for the module and bundle. |
Methods in org.apache.struts.validator with parameters of type MessageResources | |
---|---|
static String[] |
Resources.getArgs(String actionName,
MessageResources messages,
Locale locale,
Field field)
Gets the message arguments based on the current ValidatorAction
and Field . |
static String |
Resources.getMessage(MessageResources messages,
Locale locale,
String key)
Gets the Locale sensitive value based on the key passed
in. |
static String |
Resources.getMessage(MessageResources messages,
Locale locale,
ValidatorAction va,
Field field)
Gets the locale sensitive message based on the ValidatorAction
message and the Field 's arg objects. |
static String |
Resources.getMessage(ServletContext application,
HttpServletRequest request,
MessageResources defaultMessages,
Locale locale,
ValidatorAction va,
Field field)
Gets the Locale sensitive value based on the key passed
in. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |