com.hp.lft.sdk.sap.gui

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

    • Constructor Detail

      • Init

        protected Init()
    • Method Detail

      • selectedTab

        public T selectedTab(java.lang.String selectedTab)
        Initializes the selected tab in the tab object
        Parameters:
        selectedTab - the selected tab.
        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)
      • tooltip

        public T tooltip(StringProperty tooltip)
        Initializes the value of the tab object's tooltip.
        Parameters:
        tooltip - a StringProperty or RegExpProperty.
        Returns:
        the description instance with the update state (builder pattern).
      • tooltip

        public T tooltip(java.lang.String tooltip)
        Initializes the value of the tab object's tooltip.
        Parameters:
        tooltip - the tooltip.
        Returns:
        the description instance with the update state (builder pattern).
      • text

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

        public T text(java.lang.String text)
        Initializes the text associated with the tab object.
        Parameters:
        text - the text.
        Returns:
        the description instance with the update state (builder pattern).
      • enabled

        public T enabled(java.lang.Boolean enabled)
        Initializes whether the tab object can accept user input.
        Parameters:
        enabled - true to set as enabled.
        Returns:
        the description instance with the update state (builder pattern).
      • tabs

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

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