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

org.ajax4jsf.ajax.repeat.SequenceRange 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;

/**
 * @author shura
 *
 */
public class SequenceRange implements Range {
	
	private int firstRow = 0;
	
	private int rows = -1;

	/**
	 * @return the firstRow
	 */
	public int getFirstRow() {
		return firstRow;
	}

	/**
	 * @return the rows
	 */
	public int getRows() {
		return rows;
	}

	/**
	 * @param firstRow
	 * @param rows
	 */
	public SequenceRange(int firstRow, int rows) {
		super();
		this.firstRow = firstRow;
		this.rows = rows;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy