com.hp.lft.sdk.web

Class CheckBoxDescription.Init<T extends CheckBoxDescription.Init<T>>

    • Constructor Detail

      • Init

        protected Init()
    • Method Detail

      • checked

        public T checked(java.lang.Boolean isChecked)
        Initializes whether the check box is checked.
        Parameters:
        isChecked - true if the check box is checked.
        Returns:
        the description instance with the update state (builder pattern).
      • enabled

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

        public T type(java.lang.String type)
        Initializes the type of object as defined in the HTML input tag.
        Overrides:
        type in class FormFieldDescription.Init<T extends CheckBoxDescription.Init<T>>
        Parameters:
        type - the type of object as defined in the HTML input tag.
        Returns:
        the description instance with the update state (builder pattern).
      • type

        public T type(StringProperty type)
        Initializes the type of object as defined in the HTML input tag.
        Overrides:
        type in class FormFieldDescription.Init<T extends CheckBoxDescription.Init<T>>
        Parameters:
        type - a StringProperty(or RegExpProperty) representing the type of object as defined in the HTML input tag.
        Returns:
        the description instance with the update state (builder pattern).