Interface IListConverter

    • Method Detail

      • convertToList

        List<Object> convertToList​(Object value)
        Converts the model value of the backing bean to a list of tags. The items in the returned list must be compatible with the converter specified for the tagify component (UIOutput.setConverter(javax.faces.convert.Converter)).
        Parameters:
        value - The model value, as returned by UIInput.getValue().
        Returns:
        A list of tags to render.
      • convertToObject

        Object convertToObject​(List<Object> list)
        Converts the list of tags to the model value of the backing bean. The items in the list are of the same type as returned by the converter specified for the tagify component UIOutput.getConverter().
        Parameters:
        list - The current list of tags.
        Returns:
        The model value that will be set on the backing bean.