Uses of Interface
jp.terasoluna.fw.web.struts.form.FormEx

Packages that use FormEx
jp.terasoluna.fw.web.struts.form Extended classes related to the ActionForm of Struts in Web version  
jp.terasoluna.fw.web.struts.reset Related to the ActionForm reset function of Struts in Web version  
 

Uses of FormEx in jp.terasoluna.fw.web.struts.form
 

Classes in jp.terasoluna.fw.web.struts.form that implement FormEx
 class DynaValidatorActionFormEx
          Dynamic action form class.
 class ValidatorActionFormEx
          Action form class of Validator framework.
 

Uses of FormEx in jp.terasoluna.fw.web.struts.reset
 

Methods in jp.terasoluna.fw.web.struts.reset with parameters of type FormEx
 void ResetterImpl.reset(FormEx form, org.apache.struts.action.ActionMapping mapping, javax.servlet.http.HttpServletRequest request)
          Resets the field value of form.
 void Resetter.reset(FormEx form, org.apache.struts.action.ActionMapping mapping, javax.servlet.http.HttpServletRequest request)
          Initializes the property value of action form.
protected  void ResetterImpl.resetSelectField(FormEx form, java.util.Map<java.lang.String,java.lang.Object> propMap, javax.servlet.http.HttpServletRequest request)
          Resets the select field. When select attribute is set to true, field value of index specified from "startIndex" to "endIndex" of request parameter, is initialized to null.
Resets all the elements if "startIndex" and "endIndex" is not included in the request parameter.
When the data-type of field value is declared as an array or List, performs normal reset function.
protected  void ResetterImpl.resetValue(FormEx form, java.util.Map.Entry<java.lang.String,java.lang.Object> entry)
          Resets the specified property of action form. It sets false when property type is boolean or Boolean. It sets 0 when the data-type of the property is any other primitive type or its wrapper type. When the data-type of the property is Object or other than wrapper type, it sets null.
null cannot be passed to argument entry.