Interface Component

All Superinterfaces:
Cloneable
All Known Subinterfaces:
Action, ActionBar, ActionGroup, AddressField, BaseAction, CodeField, Column, ComponentContainer, CompositeComponent, DataComponent, Description, Display, Field, FieldSet, Form, FulltextSearch, GeosearchField, HtmlField, Layout, LocationField, RangeField, RemoteField, Report, SearchFilter, SelectBox, SubTable, Table, TermsComponent
All Known Implementing Classes:
AbstractAction, AbstractComponent, AbstractComponentContainer, AbstractCompositeComponent, ActionBarImpl, ActionGroupImpl, ActionImpl, AddressFieldImpl, CodeFieldImpl, ColumnImpl, DescriptionImpl, DisplayImpl, FieldImpl, FieldSetImpl, FormImpl, FulltextSearchImpl, GeosearchFieldImpl, HtmlFieldImpl, LayoutImpl, LocationFieldImpl, RangeFieldImpl, RemoteFieldImpl, ReportImpl, SearchFilterImpl, SelectBoxImpl, SubTableImpl, TableImpl, TermsComponentImpl

public interface Component extends Cloneable
  • Nested Class Summary

    Nested Classes
    Modifier and Type
    Interface
    Description
    static class 
     
  • Method Summary

    Modifier and Type
    Method
    Description
    default void
    Implement method (and add new method to ComponentVisitor), if during traversing the form something should happen with this specific component type
    default Optional<Form>
     
    Optional id of the component.
    Returns the label of a component.
     
    @Nullable String
    Returns the position of the component within the parent ("top", "bottom", "after:...", or "before: ...").
    default void
    Will be called when the form has been built completely.
  • Method Details

    • getId

      String getId()
      Optional id of the component. Can be useful if a component should be referenced.
    • getLabel

      String getLabel()
      Returns the label of a component.
    • getParent

      Optional<Component> getParent()
    • getPosition

      @Nullable @Nullable String getPosition()
      Returns the position of the component within the parent ("top", "bottom", "after:...", or "before: ...").
    • getForm

      default Optional<Form> getForm()
    • validate

      default void validate() throws ModelBuildException
      Will be called when the form has been built completely. Can be used to validate values (and throw ModelBuildException) or the fill in default value.
      Throws:
      ModelBuildException
    • accept

      default void accept(ComponentVisitor visitor)
      Implement method (and add new method to ComponentVisitor), if during traversing the form something should happen with this specific component type