com.hp.lft.sdk.powerbuilder

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

    • Constructor Detail

      • Init

        protected Init()
    • Method Detail

      • items

        public T items(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(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(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).