Subversion Repository Public Repository

litesoft

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

Diff revisions: vs.
  @@ -173,6 +173,7 @@
173 173 setNewList( (pList != null) ? pList : new ArrayList<RowType>(), pMsgText );
174 174 }
175 175
176 + @Override
176 177 public void success( ImmutableArrayList<RowType> pRows )
177 178 {
178 179 if ( (pRows == null) || pRows.isEmpty() )
  @@ -185,11 +186,13 @@
185 186 }
186 187 }
187 188
189 + @Override
188 190 public void tooMany( long pCount )
189 191 {
190 192 filteredResponse( null, TOO_MANY_ROWS_MATCHED + pCount );
191 193 }
192 194
195 + @Override
193 196 public void error( String pError )
194 197 {
195 198 filteredResponse( null, "Error: " + pError );