Class AStringListConverter

    • Constructor Detail

      • AStringListConverter

        public AStringListConverter​(char mainDelimiter)
    • Method Detail

      • convertToList

        public final List<Object> convertToList​(Object value)
        Description copied from interface: IListConverter
        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)).
        Specified by:
        convertToList in interface IListConverter
        Parameters:
        value - The model value, as returned by UIInput.getValue().
        Returns:
        A list of tags to render.
      • convertToObject

        public final Object convertToObject​(List<Object> list)
        Description copied from interface: IListConverter
        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().
        Specified by:
        convertToObject in interface IListConverter
        Parameters:
        list - The current list of tags.
        Returns:
        The model value that will be set on the backing bean.
      • getMainDelimiter

        protected final char getMainDelimiter()