Class DynaFormModel

  • All Implemented Interfaces:
    java.io.Serializable

    public class DynaFormModel
    extends java.lang.Object
    implements java.io.Serializable
    Model class for DynaForm component.
    Since:
    0.5
    Version:
    $Revision$
    Author:
    Oleg Varaksin / last modified by $Author$
    See Also:
    Serialized Form
    • Constructor Detail

      • DynaFormModel

        public DynaFormModel()
    • Method Detail

      • getUuid

        public java.lang.String getUuid()
      • getRegularRows

        public java.util.List<DynaFormRow> getRegularRows()
      • getExtendedRows

        public java.util.List<DynaFormRow> getExtendedRows()
      • removeRegularRow

        public void removeRegularRow​(DynaFormRow rowToBeRemoved)
        Removes the passed regular row.
        Parameters:
        rowToBeRemoved - DynaFormRow to be removed
      • removeRegularRow

        public void removeRegularRow​(int idx)
        Removes the regular row by its index (position in the list).
        Parameters:
        idx - index of the row to be removed
      • removeExtendedRow

        public void removeExtendedRow​(DynaFormRow rowToBeRemoved)
        Removes the passed extended row.
        Parameters:
        rowToBeRemoved - DynaFormRow to be removed
      • removeExtendedRow

        public void removeExtendedRow​(int idx)
        Removes the extended row by its index (position in the list).
        Parameters:
        idx - index of the row to be removed
      • isExistExtendedGrid

        public boolean isExistExtendedGrid()