[richfaces-svn-commits] JBoss Rich Faces SVN: r1051 - trunk/sandbox/scrollable-grid/src/main/java/org/richfaces/renderkit/html/response.

richfaces-svn-commits at lists.jboss.org richfaces-svn-commits at lists.jboss.org
Wed Jun 6 11:01:59 EDT 2007


Author: abelevich
Date: 2007-06-06 11:01:59 -0400 (Wed, 06 Jun 2007)
New Revision: 1051

Added:
   trunk/sandbox/scrollable-grid/src/main/java/org/richfaces/renderkit/html/response/GridScrollSettings.java
Removed:
   trunk/sandbox/scrollable-grid/src/main/java/org/richfaces/renderkit/html/response/Options.java
Log:
rename to  GridScrollSettings

Copied: trunk/sandbox/scrollable-grid/src/main/java/org/richfaces/renderkit/html/response/GridScrollSettings.java (from rev 1039, 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/GridScrollSettings.java	                        (rev 0)
+++ trunk/sandbox/scrollable-grid/src/main/java/org/richfaces/renderkit/html/response/GridScrollSettings.java	2007-06-06 15:01:59 UTC (rev 1051)
@@ -0,0 +1,52 @@
+/**
+ * 
+ */
+package org.richfaces.renderkit.html.response;
+
+/**
+ * @author Anton Belevich
+ * Class for storing response options  
+ */
+public class GridScrollSettings {
+	
+	private int index;
+	
+	private int startRow;
+	
+	private int count;
+
+	
+	
+	public GridScrollSettings(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;
+	}
+}

Deleted: 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	2007-06-06 15:01:23 UTC (rev 1050)
+++ trunk/sandbox/scrollable-grid/src/main/java/org/richfaces/renderkit/html/response/Options.java	2007-06-06 15:01:59 UTC (rev 1051)
@@ -1,52 +0,0 @@
-/**
- * 
- */
-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;
-	}
-}




More information about the richfaces-svn-commits mailing list