Uses of Interface
org.barracudamvc.core.forms.FormMap

Packages that use FormMap
org.barracudamvc.contrib.dbroggisch.repopulation   
org.barracudamvc.contrib.sam.xmlform   
org.barracudamvc.core.forms   
org.barracudamvc.core.forms.validators   
 

Uses of FormMap in org.barracudamvc.contrib.dbroggisch.repopulation
 

Classes in org.barracudamvc.contrib.dbroggisch.repopulation that implement FormMap
 class ErrorFormMap
           
 class RepopulationFormMap
          The class RepopulationFormMap provides a convenient way to repopulate HTML form contents.
 

Methods in org.barracudamvc.contrib.dbroggisch.repopulation that return FormMap
 FormMap ErrorFormMap.validate(boolean deferExceptions)
           
 

Uses of FormMap in org.barracudamvc.contrib.sam.xmlform
 

Classes in org.barracudamvc.contrib.sam.xmlform that implement FormMap
 class XmlFormMap
          Provide a FormMap based on a XML description
 

Uses of FormMap in org.barracudamvc.core.forms
 

Classes in org.barracudamvc.core.forms that implement FormMap
 class DefaultFormMap
          This class provides the default implementation of a FormMap.
 

Fields in org.barracudamvc.core.forms declared as FormMap
protected  FormMap DefaultFormElement.parent
           
 

Methods in org.barracudamvc.core.forms that return FormMap
 FormMap FormMapper.mapForm(FormMap fm, Map paramMap)
           
 FormMap FormMap.map(javax.servlet.ServletRequest req)
           
 FormMap FormMap.map(StateMap map)
           
 FormMap FormMap.validate(boolean deferExceptions)
           
 FormMap FormMap.validateElements(boolean deferExceptions)
           
 FormMap FormMap.validateForm(boolean deferExceptions)
           
 FormMap FormElement.getParentForm()
           
 FormMap DefaultFormMapper.mapForm(FormMap fm, Map paramMap)
          Map a whole form
 FormMap DefaultFormMap.map(javax.servlet.ServletRequest req)
          This is where we actually take an incoming form (in the form of a ServletRequest) and map it using the definitions supplied by all the FormElements.
 FormMap DefaultFormMap.map(StateMap map)
          This is where we actually take an incoming form (in the form of a StateMap) and map it using the definitions supplied by all the FormElements.
 FormMap DefaultFormMap.validate(boolean deferExceptions)
          Validate the entire form (both form level and elements).
 FormMap DefaultFormMap.validateElements(boolean deferExceptions)
          Validate just the elements (not the form)
 FormMap DefaultFormMap.validateForm(boolean deferExceptions)
          Validate just the form (not the individual elements)
 FormMap DefaultFormElement.getParentForm()
          Get the parent form map
 

Methods in org.barracudamvc.core.forms with parameters of type FormMap
protected  FormElement UIDFormMapper.getElementForMapping(FormMap fm, String paramKey)
           
 FormElement UIDFormMapper.getElementByUID(FormMap fm, String subKey, String uid)
           
 FormElement PrefixFormMapper.mapElement(FormMap fm, String key, Object origVal)
          Map an individual element
protected  FormElement PrefixFormMapper.getElementForMapping(FormMap fm, String paramKey)
           
 void Or.validate(FormElement element, FormMap map, boolean deferExceptions)
          Rather than calling all the sub validate methods, we make sure at least one of the sub-validators is valid
 void Not.validate(FormElement element, FormMap map, boolean deferExceptions)
          Rather than calling all the sub validate methods, we instead validate the validator we contain--because this validator is effectively doing a "NOT", we expect to receive a ValidationException; if we dont, then we will throw a ValidationException
 void FormValidator.validate(FormElement element, FormMap formMap, boolean deferExceptions)
          Validate a FormElement locally and allow any child validators a chance to validate as well.
static void FormUtil.repopulate(FormMap fm, BComponent bcomp)
          Given a BComponent and a reference to a FormMap, this method will automatically repopulate the form value into the component.
 FormMap FormMapper.mapForm(FormMap fm, Map paramMap)
           
 FormElement FormMapper.mapElement(FormMap fm, String key, Object origVal)
           
 FormElement FormElement.setParentForm(FormMap iparent)
           
 void DefaultFormValidator.validate(FormElement element, FormMap map, boolean deferExceptions)
          Validate a FormElement locally and allow any child validators a chance to validate as well.
 void DefaultFormValidator.validateForm(FormMap map, boolean deferExceptions)
          Validate an entire FormMap.
 void DefaultFormValidator.validateFormElement(Object val, FormElement element, FormMap map, boolean deferExceptions)
          Validate a FormElement.
 FormMap DefaultFormMapper.mapForm(FormMap fm, Map paramMap)
          Map a whole form
 FormElement DefaultFormMapper.mapElement(FormMap fm, String key, Object origVal)
          Map an individual element
protected  Object DefaultFormMapper._mapElement(FormMap fm, FormElement element, Object origVal)
          Actually map a value to a form element.
protected  FormElement DefaultFormMapper.getElementForMapping(FormMap fm, String paramKey)
          This method is used by the mapping process to look up FormElements.
 FormElement DefaultFormElement.setParentForm(FormMap iparent)
          Set the parent form map
 void And.validate(FormElement element, FormMap map, boolean deferExceptions)
          Rather than calling all the sub validate methods, we make sure at least one of the sub-validators is valid
 

Uses of FormMap in org.barracudamvc.core.forms.validators
 

Methods in org.barracudamvc.core.forms.validators with parameters of type FormMap
 void ValidatorListValidator.validate(FormElement element, FormMap map, boolean deferExceptions)
           
 void ListValidator.validate(FormElement element, FormMap formMap, boolean deferExceptions)
          Will check origVal's type and loop through all the values calling the subValidator.
 void LinkingValidator.validateForm(FormMap map, boolean deferExceptions)
           
protected  void LinkingValidator._checkFields(FormMap map, String ikeyField, String[] ifields, boolean deferExceptions)
           
 



Copyright © 2004 BarracudaMVC.org All Rights Reserved.