Uses of Interface
org.springframework.binding.form.HierarchicalFormModel

Packages that use HierarchicalFormModel
org.springframework.binding.form FormModel related interfaces. 
org.springframework.binding.form.support   
org.springframework.richclient.form   
org.springframework.richclient.widget   
 

Uses of HierarchicalFormModel in org.springframework.binding.form
 

Subinterfaces of HierarchicalFormModel in org.springframework.binding.form
 interface ValidatingFormModel
          Sub-interface implemented by form models that can validate its own properties.
 

Methods in org.springframework.binding.form that return HierarchicalFormModel
 HierarchicalFormModel HierarchicalFormModel.getParent()
          Returns the parent form model or null of there is none.
 

Methods in org.springframework.binding.form with parameters of type HierarchicalFormModel
 void HierarchicalFormModel.addChild(HierarchicalFormModel child)
          Adds a new child to the form model.
 void HierarchicalFormModel.removeChild(HierarchicalFormModel child)
          Removes a child from this form model.
 void HierarchicalFormModel.setParent(HierarchicalFormModel parent)
          Sets the parent form model.
 

Uses of HierarchicalFormModel in org.springframework.binding.form.support
 

Classes in org.springframework.binding.form.support that implement HierarchicalFormModel
 class AbstractFormModel
          Base implementation of HierarchicalFormModel and ConfigurableFormModel subclasses need only implement the 4 value model interception methods.
 class DefaultFormModel
          Default form model implementation.
 

Methods in org.springframework.binding.form.support that return HierarchicalFormModel
 HierarchicalFormModel AbstractFormModel.getParent()
           
 

Methods in org.springframework.binding.form.support with parameters of type HierarchicalFormModel
 void DefaultFormModel.addChild(HierarchicalFormModel child)
           
 void AbstractFormModel.addChild(HierarchicalFormModel child)
          Add child to this FormModel.
 void DefaultFormModel.removeChild(HierarchicalFormModel child)
           
 void AbstractFormModel.removeChild(HierarchicalFormModel child)
          Remove a child FormModel.
 void DefaultFormModel.setParent(HierarchicalFormModel parent)
           
 void AbstractFormModel.setParent(HierarchicalFormModel parent)
          Sets the parent form model.
 

Uses of HierarchicalFormModel in org.springframework.richclient.form
 

Methods in org.springframework.richclient.form that return HierarchicalFormModel
protected  HierarchicalFormModel CompoundForm.createCompoundFormModel(Object formObject)
           
static HierarchicalFormModel FormModelHelper.createCompoundFormModel(Object formObject)
           
 HierarchicalFormModel CompoundForm.getFormModel()
           
protected  HierarchicalFormModel AbstractForm.getParent()
          Returns the parent of this Form's FormModel or null.
 

Methods in org.springframework.richclient.form with parameters of type HierarchicalFormModel
static FormModel FormModelHelper.createChildPageFormModel(HierarchicalFormModel parentModel)
           
static ValidatingFormModel FormModelHelper.createChildPageFormModel(HierarchicalFormModel parentModel, String childPageName)
           
static ValidatingFormModel FormModelHelper.createChildPageFormModel(HierarchicalFormModel parentModel, String childPageName, String childFormObjectPropertyPath)
          Create a child form model nested by this form model identified by the provided name.
static ValidatingFormModel FormModelHelper.createChildPageFormModel(HierarchicalFormModel parentModel, String childPageName, ValueModel childFormObjectHolder)
           
protected abstract  AbstractDetailForm AbstractMasterForm.createDetailForm(HierarchicalFormModel parentFormModel, ValueModel valueHolder, ObservableList masterList)
          Construct the detail half of this master/detail pair.
static FormModel FormModelHelper.getChild(HierarchicalFormModel formModel, String childPageName)
          Returns the child of the formModel with the given page name.
 

Constructors in org.springframework.richclient.form with parameters of type HierarchicalFormModel
AbstractDetailForm(HierarchicalFormModel parentFormModel, String formId, ValueModel childFormObjectHolder, ObservableList masterList)
          Construct a detail form using the provided parent form model (we will construct our own form model as a child of the parent model).
AbstractFocussableForm(HierarchicalFormModel parentFormModel, String formId)
           
AbstractFocussableForm(HierarchicalFormModel parentFormModel, String formId, String childFormObjectPropertyPath)
           
AbstractFocussableForm(HierarchicalFormModel parentFormModel, String formId, ValueModel childFormObjectHolder)
           
AbstractForm(HierarchicalFormModel parentFormModel, String formId, String childFormObjectPropertyPath)
          Create a Form with a FormModel that has a child-parent relation with the provided parentFormModel.
AbstractForm(HierarchicalFormModel parentFormModel, String formId, ValueModel childFormObjectHolder)
          Create a Form with a FormModel that has a child-parent relation with the provided parentFormModel.
AbstractMasterForm(HierarchicalFormModel parentFormModel, String property, String formId, Class detailType)
          Construct a new AbstractMasterForm using the given parent form model and property path.
AbstractTableMasterForm(HierarchicalFormModel parentFormModel, String property, String formId, Class detailType)
          Construct a new AbstractTableMasterForm using the given parent form model and property path.
GeneratedForm(HierarchicalFormModel parentFormModel, String formId, String childFormObjectPropertyPath)
           
GeneratedForm(HierarchicalFormModel parentFormModel, String formId, String childFormObjectPropertyPath, FormUIProvider formUIProvider)
           
GeneratedForm(HierarchicalFormModel parentFormModel, String formId, ValueModel childFormObjectHolder)
           
GeneratedForm(HierarchicalFormModel parentFormModel, String formId, ValueModel childFormObjectHolder, FormUIProvider formUIProvider)
           
 

Uses of HierarchicalFormModel in org.springframework.richclient.widget
 

Constructors in org.springframework.richclient.widget with parameters of type HierarchicalFormModel
AbstractWidgetForm(HierarchicalFormModel parentFormModel, String formId, String childFormObjectPropertyPath)
           
AbstractWidgetForm(HierarchicalFormModel parentFormModel, String formId, ValueModel childFormObjectHolder)
           
 



Copyright © 2004-2009 The Spring Framework. All Rights Reserved.