Class ListBoxDescription.Init<T extends ListBoxDescription.Init<T>>

Direct Known Subclasses:
ListBoxDescription.Builder, ListViewDescription.Init
Enclosing class:
ListBoxDescription

protected abstract static class ListBoxDescription.Init<T extends ListBoxDescription.Init<T>> extends UiObjectWithLayoutInfoDescription.Init<T>
Helper class for ListBoxDescription.Builder
  • Constructor Details

    • Init

      protected Init()
  • Method Details

    • build

      public ListBoxDescription build()
      Description copied from class: DescriptionBase.Init
      Returns the built description instance (builder pattern).
      Overrides:
      build in class DescriptionBase.Init<T extends ListBoxDescription.Init<T>>
      Returns:
      The built description instance (builder pattern).
    • items

      public T items(String[] items)
      Initializes the items in the list.
      Parameters:
      items - the items in the list.
      Returns:
      the description instance with the update state (builder pattern).
    • selectedItems

      public T selectedItems(String[] selectedItems)
      Initializes the selected items in the list.
      Parameters:
      selectedItems - the selected items in the list.
      Returns:
      the description instance with the update state (builder pattern).
    • itemsCount

      public T itemsCount(Integer count)
      Initializes the number of items in the list.
      Parameters:
      count - the number of items in the list.
      Returns:
      the description instance with the update state (builder pattern).