Class TabControlDescription.Init<T extends TabControlDescription.Init<T>>

Direct Known Subclasses:
TabControlDescription.Builder
Enclosing class:
TabControlDescription

protected abstract static class TabControlDescription.Init<T extends TabControlDescription.Init<T>> extends UiObjectDescriptionBase.Init<T>
  • Constructor Details

    • Init

      protected Init()
  • Method Details

    • build

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

      public T attachedText(StringProperty attachedText)
      Initializes the static text that is attached to this object.
      Parameters:
      attachedText - a StringProperty or RegExpProperty
      Returns:
      the description instance with the update state (builder pattern)
    • attachedText

      public T attachedText(String attachedText)
      Initializes the static text that is attached to this object.
      Parameters:
      attachedText - the static text
      Returns:
      the description instance with the update state (builder pattern)
    • tabs

      public T tabs(String[] tabs)
      Initializes the tabs in the tab object.
      Parameters:
      tabs - the tabs
      Returns:
      the description instance with the update state (builder pattern)
    • selectedTab

      public T selectedTab(String selectedTab)
      Initializes the selected tab in the tab object
      Parameters:
      selectedTab - the tab to select
      Returns:
      the description instance with the update state (builder pattern)
    • selectedTab

      public T selectedTab(StringProperty selectedTab)
      Initializes the selected tab in the tab object.
      Parameters:
      selectedTab - a StringProperty or RegExpProperty
      Returns:
      the description instance with the update state (builder pattern)
    • tabsCount

      public T tabsCount(Integer count)
      Initializes the number of tabs in the tab object.
      Parameters:
      count - the tab count
      Returns:
      the description instance with the update state (builder pattern)