Subversion Repository Public Repository

litesoft

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

Diff revisions: vs.
  @@ -18,17 +18,20 @@
18 18 mDataProvider = pDataProvider;
19 19 }
20 20
21 + @Override
21 22 public void success( ImmutableArrayList<RowType> pRows )
22 23 {
23 24 requestResponse( pRows );
24 25 }
25 26
27 + @Override
26 28 public void tooMany( long pCount )
27 29 {
28 30 AlertManager.alert( this.getClass().getName(), "Too Many Rows", "" + pCount + " is Too Many Rows" );
29 31 requestResponse( null );
30 32 }
31 33
34 + @Override
32 35 public void error( String pError )
33 36 {
34 37 AlertManager.alert( this.getClass().getName(), "Error Fetching Data", pError + "\noccured when attempting to fetch the table data" );