Interface ValueHolder

    • Method Detail

      • getLocalValue

        Object getLocalValue()

        Return the local value of this UIComponent (if any), without evaluating any associated ValueExpression.

        Returns:
        the local value.
      • getValue

        Object getValue()

        Gets the value of this UIComponent. If validation failed, as indicated by FacesContext.isValidationFailed() returning true, always return the local value. Otherwise, first, consult the local value property of this component. If non-null return it. If null, see if we have a ValueExpression for the value property. If so, return the result of evaluating the property, otherwise return null.

        Returns:
        the value.
      • setValue

        void setValue​(Object value)

        Set the value of this UIComponent (if any).

        Parameters:
        value - The new local value