com.hp.lft.sdk.sap.gui

Class EditFieldDescription.Init<T extends EditFieldDescription.Init<T>>

    • Constructor Detail

      • Init

        protected Init()
    • Method Detail

      • attachedText

        public T attachedText(StringProperty attachedText)
        Initializes static text that is attached to the edit field.
        Parameters:
        attachedText - a StringProperty or RegExpProperty.
        Returns:
        the description instance with the update state (builder pattern).
      • attachedText

        public T attachedText(java.lang.String attachedText)
        Initializes static text that is attached to the edit field.
        Parameters:
        attachedText - the static text.
        Returns:
        the description instance with the update state (builder pattern).
      • enabled

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

        public T highlighted(java.lang.Boolean highlighted)
        Initializes whether the edit box is highlighted.
        Parameters:
        highlighted - true to set as highlighted.
        Returns:
        the description instance with the update state (builder pattern).
      • iconName

        public T iconName(StringProperty iconName)
        Initializes the name of the icon used in the edit box.
        Parameters:
        iconName - a StringProperty or RegExpProperty.
        Returns:
        the description instance with the update state (builder pattern).
      • iconName

        public T iconName(java.lang.String iconName)
        Initializes the name of the icon used in the edit box.
        Parameters:
        iconName - the name of the icon.
        Returns:
        the description instance with the update state (builder pattern).
      • maxLength

        public T maxLength(java.lang.Integer maxLength)
        Initializes the maximum number of characters that can be entered in the edit box.
        Parameters:
        maxLength - the maximum number of characters.
        Returns:
        the description instance with the update state (builder pattern).
      • numerical

        public T numerical(java.lang.Boolean numerical)
        Initializes whether the edit box is a numerical field
        Parameters:
        numerical - true to set as numerical field.
        Returns:
        the description instance with the update state (builder pattern).
      • required

        public T required(java.lang.Boolean required)
        Initializes whether the edit box is required.
        Parameters:
        required - true to set as required.
        Returns:
        the description instance with the update state (builder pattern).
      • text

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