diff options
author | Artur Signell <artur@vaadin.com> | 2013-10-07 17:00:47 +0300 |
---|---|---|
committer | Artur Signell <artur@vaadin.com> | 2013-10-07 17:00:47 +0300 |
commit | 9566d1e1275637da93cd6cc5d47f88c4e558c11e (patch) | |
tree | 1addf8735b335371bc280f6ab08d163cb1aeb00a | |
parent | 31a3f4fccb1a70f673fb166673d3f00a4a3f29ab (diff) | |
download | vaadin-framework-9566d1e1275637da93cd6cc5d47f88c4e558c11e.tar.gz vaadin-framework-9566d1e1275637da93cd6cc5d47f88c4e558c11e.zip |
Fixed method name collision with new GWT Timer method (#12710)
Change-Id: I71c62bb0c7fde101ad7b1315c277a2727bbc9e2b
-rw-r--r-- | client/src/com/vaadin/client/ui/VScrollTable.java | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/client/src/com/vaadin/client/ui/VScrollTable.java b/client/src/com/vaadin/client/ui/VScrollTable.java index 492730259a..318a4a5f8f 100644 --- a/client/src/com/vaadin/client/ui/VScrollTable.java +++ b/client/src/com/vaadin/client/ui/VScrollTable.java @@ -2261,7 +2261,7 @@ public class VScrollTable extends FlowPanel implements HasWidgets, private int reqFirstRow = 0; private int reqRows = 0; - private boolean isRunning = false; + private boolean isRequestHandlerRunning = false; public void triggerRowFetch(int first, int rows) { setReqFirstRow(first); @@ -2279,12 +2279,12 @@ public class VScrollTable extends FlowPanel implements HasWidgets, deferRowFetch(250); } - public boolean isRunning() { - return isRunning; + public boolean isRequestHandlerRunning() { + return isRequestHandlerRunning; } public void deferRowFetch(int msec) { - isRunning = true; + isRequestHandlerRunning = true; if (reqRows > 0 && reqFirstRow < totalRows) { schedule(msec); @@ -2426,7 +2426,7 @@ public class VScrollTable extends FlowPanel implements HasWidgets, unSyncedselectionsBeforeRowFetch = new HashSet<Object>( selectedRowKeys); } - isRunning = false; + isRequestHandlerRunning = false; } } @@ -2434,7 +2434,7 @@ public class VScrollTable extends FlowPanel implements HasWidgets, * Sends request to refresh content at this position. */ public void refreshContent() { - isRunning = true; + isRequestHandlerRunning = true; int first = (int) (firstRowInViewPort - pageLength * cache_rate); int reqRows = (int) (2 * pageLength * cache_rate + pageLength); if (first < 0) { |