All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.richfaces.renderkit.AutocompleteEncodeStrategy Maven / Gradle / Ivy

There is a newer version: 4.3.7.Final
Show newest version
package org.richfaces.renderkit;

import java.io.IOException;

import javax.faces.component.UIComponent;
import javax.faces.context.FacesContext;

import org.richfaces.component.AbstractAutocomplete;


public interface AutocompleteEncodeStrategy {
    void encodeItemsContainerBegin(FacesContext facesContext, UIComponent component) throws IOException ;

    void encodeItemsContainerEnd(FacesContext facesContext, UIComponent component) throws IOException ;

    void encodeFakeItem(FacesContext facesContext, UIComponent component) throws IOException ;

    void encodeItem(FacesContext facesContext, AbstractAutocomplete comboBox,
        Object nextItem) throws IOException;

    public String getContainerElementId(FacesContext facesContext, UIComponent component);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy