diff options
author | Johannes Dahlström <johannesd@vaadin.com> | 2015-01-09 14:50:01 +0200 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2015-01-11 14:34:30 +0000 |
commit | 0c41a0271ad996b9c07a16c59e7c3af0f8f4c324 (patch) | |
tree | 6831185306f899d5179d36f7cfcd701f2629b87f /shared | |
parent | b16e3db2e5e46f2881353f2f269c61df7052c21a (diff) | |
download | vaadin-framework-0c41a0271ad996b9c07a16c59e7c3af0f8f4c324.tar.gz vaadin-framework-0c41a0271ad996b9c07a16c59e7c3af0f8f4c324.zip |
A few small renames and typo fixes for Grid
* SortNotifier.removeSortistener -> removeSortListener
* DisabledGridClientTest now extends GridBasicClientFeatures
* GridServerRpc.selectionChange -> select
Change-Id: Id01b1d51f84c996444de28b262df3db7a6c35a09
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); } |