Uses of Class
org.apache.struts.action.ActionErrors

Packages that use ActionErrors
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.chain.commands Configurable commands that may be placed within the request processor. 
org.apache.struts.chain.commands.servlet Commands which are particular to servlet processing. 
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.validator The validator package provides a series of classes to validate ActionForm type of input. 
 

Uses of ActionErrors in org.apache.struts.action
 

Methods in org.apache.struts.action that return ActionErrors
 ActionErrors ActionForm.validate(ActionMapping mapping, HttpServletRequest request)
          Can be used to validate the properties that have been set for this HTTP request, and return an ActionErrors object that encapsulates any validation errors that have been found.
 ActionErrors ActionForm.validate(ActionMapping mapping, ServletRequest request)
          Can be used to validate the properties that have been set for this non-HTTP request, and return an ActionErrors object that encapsulates any validation errors that have been found.
 

Constructors in org.apache.struts.action with parameters of type ActionErrors
ActionErrors(ActionErrors messages)
          Create an ActionErrors object initialized with the given messages.
 

Uses of ActionErrors in org.apache.struts.chain.commands
 

Methods in org.apache.struts.chain.commands that return ActionErrors
protected abstract  ActionErrors AbstractValidateActionForm.validate(ActionContext context, ActionConfig actionConfig, ActionForm actionForm)
          Call the validate() method of the specified form bean, and return the resulting ActionErrors object.
 

Uses of ActionErrors in org.apache.struts.chain.commands.servlet
 

Methods in org.apache.struts.chain.commands.servlet that return ActionErrors
protected  ActionErrors ValidateActionForm.validate(ActionContext context, ActionConfig actionConfig, ActionForm actionForm)
          Call the validate() method of the specified form bean, and return the resulting ActionErrors object.
 

Uses of ActionErrors in org.apache.struts.scripting
 

Methods in org.apache.struts.scripting with parameters of type ActionErrors
 void ScriptAction.saveErrors(HttpServletRequest req, ActionErrors errs)
          Deprecated. Use saveErrors(HttpServletRequest, ActionMessages) instead. This will be removed after Struts 1.2.
 

Uses of ActionErrors in org.apache.struts.validator
 

Methods in org.apache.struts.validator that return ActionErrors
 ActionErrors ValidatorForm.validate(ActionMapping mapping, HttpServletRequest request)
          Validate the properties that have been set from this HTTP request, and return an ActionErrors object that encapsulates any validation errors that have been found.
 ActionErrors DynaValidatorForm.validate(ActionMapping mapping, HttpServletRequest request)
          Validate the properties that have been set from this HTTP request, and return an ActionErrors object that encapsulates any validation errors that have been found.
 



Copyright © 2000-2008 Apache Software Foundation. All Rights Reserved.