Interface ColumnedForm

All Known Implementing Classes:
ColumnedFormBuilder, ComplexFormBuilder

public interface ColumnedForm
The form component column handler support interface
Since:
4.0
Author:
JBStrap
  • Method Summary

    Modifier and Type
    Method
    Description
    Creates a form column, to be used by the builder classes, that handle form columns
    Gets the form column, specified by the column name
  • Method Details

    • createColumn

      FormColumn createColumn(String name)
      Creates a form column, to be used by the builder classes, that handle form columns
      Parameters:
      name - The name of the column, must be unique within the form
      Returns:
      The created form column
    • getColumn

      FormColumn getColumn(String name)
      Gets the form column, specified by the column name
      Parameters:
      name - The name of the column
      Returns:
      The column corresponding to the name, or null if not found