diff options
Diffstat (limited to 'shared')
-rw-r--r-- | shared/src/com/vaadin/shared/ui/grid/GridServerRpc.java | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/shared/src/com/vaadin/shared/ui/grid/GridServerRpc.java b/shared/src/com/vaadin/shared/ui/grid/GridServerRpc.java index 37cbb295f6..77eda7a2f6 100644 --- a/shared/src/com/vaadin/shared/ui/grid/GridServerRpc.java +++ b/shared/src/com/vaadin/shared/ui/grid/GridServerRpc.java @@ -27,10 +27,11 @@ import com.vaadin.shared.data.sort.SortDirection; * @author Vaadin Ltd */ public interface GridServerRpc extends ServerRpc { - void selectionChange(List<String> newSelection); - void sort(String[] columnIds, SortDirection[] directions, - boolean userOriginated); + void select(List<String> newSelection); void selectAll(); + + void sort(String[] columnIds, SortDirection[] directions, + boolean userOriginated); } |