Author: abelevich
Date: 2007-06-06 08:55:27 -0400 (Wed, 06 Jun 2007)
New Revision: 1039
Added:
trunk/sandbox/scrollable-grid/src/main/java/org/richfaces/renderkit/html/response/
trunk/sandbox/scrollable-grid/src/main/java/org/richfaces/renderkit/html/response/Options.java
Log:
Added:
trunk/sandbox/scrollable-grid/src/main/java/org/richfaces/renderkit/html/response/Options.java
===================================================================
---
trunk/sandbox/scrollable-grid/src/main/java/org/richfaces/renderkit/html/response/Options.java
(rev 0)
+++
trunk/sandbox/scrollable-grid/src/main/java/org/richfaces/renderkit/html/response/Options.java 2007-06-06
12:55:27 UTC (rev 1039)
@@ -0,0 +1,52 @@
+/**
+ *
+ */
+package org.richfaces.renderkit.html.response;
+
+/**
+ * @author Anton Belevich
+ * Class for storing response options
+ */
+public class Options {
+
+ private int index;
+
+ private int startRow;
+
+ private int count;
+
+
+
+ public Options(int index, int startRow, int count) {
+
+ this.index = index;
+
+ this.startRow = startRow;
+
+ this.count = count;
+ }
+
+ public int getCount() {
+ return count;
+ }
+
+ public void setCount(int count) {
+ this.count = count;
+ }
+
+ public int getIndex() {
+ return index;
+ }
+
+ public void setIndex(int index) {
+ this.index = index;
+ }
+
+ public int getStartRow() {
+ return startRow;
+ }
+
+ public void setStartRow(int startRow) {
+ this.startRow = startRow;
+ }
+}
Show replies by date