com.hp.lft.sdk.sap.gui

Class ComboBoxDescription.Init<T extends ComboBoxDescription.Init<T>>

    • Constructor Detail

      • Init

        protected Init()
    • Method Detail

      • selectedItem

        public T selectedItem(java.lang.String selectedItem)
        Initializes the selected item in the combo box
        Parameters:
        selectedItem - the selected item.
        Returns:
        the description instance with the update state (builder pattern)
      • selectedItem

        public T selectedItem(StringProperty selectedItem)
        Initializes the selected item in the combo box.
        Parameters:
        selectedItem - a StringProperty or RegExpProperty.
        Returns:
        the description instance with the update state (builder pattern)
      • enabled

        public T enabled(java.lang.Boolean isEnabled)
        Initializes whether the object can accept user input.
        Parameters:
        isEnabled - true if enabled.
        Returns:
        the description instance with the update state (builder pattern).
      • items

        public T items(java.lang.String[] items)
        Initializes the items list of the combo box.
        Parameters:
        items - the items.
        Returns:
        the description instance with the update state (builder pattern).
      • itemsCount

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