Subversion Repository Public Repository

litesoft

Diff Revisions 475 vs 620 for /trunk/Java/GWT/Client/src/com/google/gwt/gen2/table/client/TableModelHelper.java

Diff revisions: vs.
  @@ -15,10 +15,9 @@
15 15 */
16 16 package com.google.gwt.gen2.table.client;
17 17
18 + import java.io.*;
18 19 import java.util.*;
19 20
20 - import com.google.gwt.user.client.rpc.*;
21 -
22 21 /**
23 22 * A helper class that provides all of the inner classes used by
24 23 * {@link TableModel}. These classes cannot be included in the
  @@ -33,7 +32,7 @@
33 32 /**
34 33 * Information about the sort order of a specific column in a table.
35 34 */
36 - public static class ColumnSortInfo implements IsSerializable
35 + public static class ColumnSortInfo implements Serializable
37 36 {
38 37 /**
39 38 * True if the sort order is ascending.
  @@ -140,7 +139,7 @@
140 139 * single column. The first entry is the primary sort order, the second entry
141 140 * is the first tie-breaker, and so on.
142 141 */
143 - public static class ColumnSortList implements IsSerializable,
142 + public static class ColumnSortList implements Serializable,
144 143 Iterable<ColumnSortInfo>
145 144 {
146 145 /**
  @@ -335,7 +334,7 @@
335 334 /**
336 335 * A {@link TableModelHelper} request.
337 336 */
338 - public static class Request implements IsSerializable
337 + public static class Request implements Serializable
339 338 {
340 339 /**
341 340 * The number of rows to request.
  @@ -432,7 +431,7 @@
432 431 *
433 432 * @param <RowType> the serializable data type of the row values
434 433 */
435 - public static class SerializableResponse<RowType extends IsSerializable> extends Response<RowType> implements IsSerializable
434 + public static class SerializableResponse<RowType extends Serializable> extends Response<RowType> implements Serializable
436 435 {
437 436 /**
438 437 * The {@link Collection} of row values.