Class BindingModel

java.lang.Object
org.springframework.webflow.engine.model.AbstractModel
org.springframework.webflow.engine.model.BindingModel
All Implemented Interfaces:
Model

public class BindingModel extends AbstractModel
Model support for binding elements.
Author:
Scott Andrews
  • Constructor Details

    • BindingModel

      public BindingModel(String property, String converter, String required)
      Create a binding model
      Parameters:
      property - the name of the bound property
      converter - the converter
      required - required status
  • Method Details

    • isMergeableWith

      public boolean isMergeableWith(Model model)
      Description copied from interface: Model
      Determine if the model is able to be merged into the current model
      Parameters:
      model - the model to compare
      Returns:
      true if able to merge
    • merge

      public void merge(Model model)
      Description copied from interface: Model
      Merge the model into the current model
      Parameters:
      model - the model to merge with
    • createCopy

      public Model createCopy()
      Description copied from interface: Model
      Create a deep copy of this model. Needed when merging models and collections.
      Returns:
      a deep copy of this model
    • getProperty

      public String getProperty()
    • setProperty

      public void setProperty(String property)
    • getConverter

      public String getConverter()
    • setConverter

      public void setConverter(String converter)
    • getRequired

      public String getRequired()
    • setRequired

      public void setRequired(String required)