Subversion Repository Public Repository

litesoft

Diff Revisions 23 vs 49 for /trunk/Java/GWT/Client/src/org/litesoft/GWT/client/widgets/datatables/RegularTable.java

Diff revisions: vs.
  @@ -1,3 +1,4 @@
1 + // This Source Code is in the Public Domain per: http://litesoft.org/License.txt
1 2 package org.litesoft.GWT.client.widgets.datatables;
2 3
3 4 import java.util.*;
  @@ -89,22 +90,22 @@
89 90 {
90 91 return addHandler(pHandler, SelectionEvent.getType());
91 92 }
92 -
93 +
93 94 public boolean isScrollVertically()
94 95 {
95 96 return mTable.isScrollVertically();
96 97 }
97 -
98 +
98 99 public void setScrollVertically(boolean pScrollVertically)
99 100 {
100 101 mTable.setScrollVertically(pScrollVertically);
101 102 }
102 -
103 +
103 104 public TableRowCountCallback getRowCountCallback()
104 105 {
105 106 return mTable.getRowCountCallback();
106 107 }
107 -
108 +
108 109 public void setRowCountCallback(TableRowCountCallback pRowCountCallback)
109 110 {
110 111 mTable.setRowCountCallback(pRowCountCallback);