Interface FormBuilder

All Superinterfaces:
LayoutContainerBuilder
All Known Implementing Classes:
FormBuilderImpl

public interface FormBuilder extends LayoutContainerBuilder
A builder to dynamically create Form instances.
  • Method Details Link icon

    • getFormId Link icon

      String getFormId()
    • getEntityModel Link icon

      EntityModel getEntityModel()
    • isReplaced Link icon

      boolean isReplaced()
    • isReadOnly Link icon

      boolean isReadOnly()
    • isAppendDefaultActions Link icon

      boolean isAppendDefaultActions()
    • isAppendMassMutationActions Link icon

      boolean isAppendMassMutationActions()
    • hasOutputJobAction Link icon

      boolean hasOutputJobAction()
    • hasMergeAction Link icon

      boolean hasMergeAction()
    • hasGenericLabelAction Link icon

      boolean hasGenericLabelAction()
    • hasCopyAction Link icon

      boolean hasCopyAction()
    • hasImportAction Link icon

      boolean hasImportAction()
    • hasExportAction Link icon

      boolean hasExportAction()
    • hasGenericActions Link icon

      boolean hasGenericActions()
    • isMarkable Link icon

      boolean isMarkable()
    • markable Link icon

      FormBuilder markable(boolean markable)
    • readOnly Link icon

      FormBuilder readOnly(boolean readOnly)
    • getChildren Link icon

      List<Component> getChildren()
    • getLayoutBuilder Link icon

      @Nullable @Nullable LayoutBuilder getLayoutBuilder(Layout layout)
    • removeComponent Link icon

      void removeComponent(Component component)
    • addAction Link icon

      default ActionBuilder addAction(String id)
    • addAction Link icon

      ActionBuilder addAction(String id, @Nullable @Nullable String position)
    • addReport Link icon

      default ReportBuilder addReport(String id)
    • addReport Link icon

      ReportBuilder addReport(String id, @Nullable @Nullable String position)
    • addActionGroup Link icon

      default ActionGroupBuilder addActionGroup(String id, String label)
      add an action group with default position
      Parameters:
      id - id of the action group
      label - label of the action group
      Returns:
      the builder of the newly created action group
    • addActionGroup Link icon

      ActionGroupBuilder addActionGroup(String id, String label, @Nullable @Nullable String position)
      add a action group
      Parameters:
      id - id of the action group
      label - label of the action group
      position - relative position of the action group
      Returns:
      the builder of the newly created action group
    • getActionGroupBuilder Link icon

      @Nullable @Nullable ActionGroupBuilder getActionGroupBuilder(ActionGroup actionGroup)
      get a builder for a given ActionGroup
      Parameters:
      actionGroup - the action group to use
      Returns:
      the builder
    • getOrCreateMainActionBar Link icon

      ActionBar getOrCreateMainActionBar()
      get or create the main action bar at the top of the form that contains the major action groups and actions.
      Returns:
      the existing main action bar or the newly created one.
    • sort Link icon

      void sort() throws ModelBuildException
      sort the component represented by this builder
      Throws:
      ModelBuildException
    • get Link icon

      returns the form component. note: for performance reasons this method should be called only once at the end when the form is built completely, because it also validates all components and does some other final modifications.
      Returns:
      the form component
      Throws:
      ModelBuildException
    • getWithoutProcessing Link icon

      Form getWithoutProcessing()
      returns the form component as opposed to get(), this does not validate or process the contents of the form do not use the result of this method as a final form, but only as a carrier for form data
      Returns:
      the form component
    • removeComponents Link icon

      void removeComponents(Predicate<Component> componentPredicate)
      remove all components (recursively) which returns the given predicate `true` for.
    • findById Link icon

      Optional<Component> findById(String componentId)
      looks for a child with the given id in the form (recursively).