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

org.ajax4jsf.ajax.repeat.AjaxDataEncoder Maven / Gradle / Ivy

Go to download

Ajax4jsf is an open source extension to the JavaServer Faces standard that adds AJAX capability to JSF applications without requiring the writing of any JavaScript.

The newest version!
package org.ajax4jsf.ajax.repeat;

import java.util.Set;

import org.ajax4jsf.framework.ajax.AjaxChildrenEncoder;

/**
 * Interface for iterable component, allowed for render given set of rows in ajax response.
 * @author shura
 *
 */
public interface AjaxDataEncoder extends AjaxChildrenEncoder {
	
	/**
	 * @return Set for values of {@link ExtendedDataModel} keys, encoded in ajax response by this component.
	 */
	public Set getAjaxKeys();
	
	public void setAjaxKeys(Set ajaxKeys);
	

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy