com.hp.lft.sdk.mobile

Class LabelDescription.Init<T extends LabelDescription.Init<T>>

    • Constructor Detail

      • Init

        protected Init()
    • Method Detail

      • text

        public T text(StringProperty text)
        Initializes the label's text.
        Parameters:
        text - a StringProperty (or RegExpProperty) representing the label's text.
        Returns:
        the description instance with the updated state (builder pattern).
      • text

        public T text(java.lang.String text)
        Initializes the label's text.
        Parameters:
        text - the label's text.
        Returns:
        the description instance with the updated state (builder pattern).
      • checkable

        public T checkable(java.lang.Boolean isCheckable)
        Initializes whether the control can be checked.
        Parameters:
        isCheckable - true if the control can be checked.
        Returns:
        the description instance with the updated state (builder pattern).
      • checked

        public T checked(java.lang.Boolean isChecked)
        Initializes whether the mobile control is checked (relevant for controls that can have a check mark).
        Parameters:
        isChecked - true if the mobile control is checked (relevant for controls that can have a check mark).
        Returns:
        the description instance with the updated state (builder pattern).