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

org.ajax4jsf.ajax.repeat.DataComponentState 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 javax.faces.component.StateHolder;

/**
 * Interface for classes keeped current iterable component state, as :
 * active data objects range
 * sorting order
 * tree nodes expanded state
 * 
 * @author shura
 *
 */
public interface  DataComponentState extends StateHolder {

	/**
	 * Build used data objects range for iteration.
	 * @return
	 */
	public abstract Range getRange();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy