Class FormVariable

java.lang.Object
com.flowable.form.engine.impl.util.FormVariable

public class FormVariable extends Object
Author:
Filip Hrisafov
  • Field Details

    • name

      protected final String name
    • type

      protected final String type
    • subType

      protected final String subType
    • nestedVariableTypes

      protected final Map<String,List<FormVariable>> nestedVariableTypes
    • formField

      protected final Map<String,Object> formField
    • isWritable

      protected final boolean isWritable
    • isEnabled

      protected final boolean isEnabled
    • isRequired

      protected final boolean isRequired
  • Constructor Details

    • FormVariable

      public FormVariable(String name, String type, Map<String,Object> formField, boolean isWritable, boolean isEnabled, boolean isRequired)
    • FormVariable

      public FormVariable(String name, String type, String subType, Map<String,Object> formField, boolean isWritable, boolean isEnabled, boolean isRequired)
  • Method Details

    • getName

      public String getName()
    • getType

      public String getType()
    • getSubType

      public String getSubType()
    • getNestedVariableTypes

      public Map<String,List<FormVariable>> getNestedVariableTypes()
    • addNestedVariableTypes

      public void addNestedVariableTypes(Map<String,List<FormVariable>> nestedVariableTypesToAdd)
    • getFormField

      public Map<String,Object> getFormField()
    • isEnabled

      public boolean isEnabled()
    • isRequired

      public boolean isRequired()
    • isWritable

      public boolean isWritable()
    • toString

      public String toString()
      Overrides:
      toString in class Object