Package jp.terasoluna.fw.web.struts.form

Extended classes related to the ActionForm of Struts in Web version

See:
          Description

Interface Summary
FormEx Interface defining the method common to ValidatorActionFormEx,DynaValidatorActionFormEx.
MultiFieldValidator Interface that performs the correlation input check of multiple fields. To execute the input check as per the dependency relationship between multiple fields of action form in the presentation layer, create the class in which this interface is implemented. In MultiFieldValidator.validate(String, String[]) method, the first argument is the value to be validated and second argument is the value of dependent field passed as an array. Returns false when there is a validation error.
Please note that field to be validated can be passed as null or blank character. Since there is no default error message for this validation rule, message should always be set in validation.xml.
*This validation rule does not support JavaScript check.

At the time of validating if the value in value field of action form is greater than the value in value1 field and less than the value in value2 field, perform the implementation and settings as follows.
 

Class Summary
ActionFormUtil Utility class related to the action form.
DynaValidatorActionFormEx Dynamic action form class.
FieldChecksEx Validator Additional rule class.
ValidatorActionFormEx Action form class of Validator framework.
 

Package jp.terasoluna.fw.web.struts.form Description

Extended classes related to the ActionForm of Struts in Web version