com.hp.lft.sdk.stdwin

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

    • Constructor Detail

      • Init

        protected Init()
    • Method Detail

      • items

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

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

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

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