]> source.dussan.org Git - vaadin-framework.git/blob
81c99a8606c5b6a142107b93257342d84df3e2d6
[vaadin-framework.git] /
1 /*
2  * Copyright 2000-2018 Vaadin Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License"); you may not
5  * use this file except in compliance with the License. You may obtain a copy of
6  * the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
12  * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13  * License for the specific language governing permissions and limitations under
14  * the License.
15  */
16 package com.vaadin.v7.shared.ui.grid.selection;
17
18 import java.util.List;
19
20 import com.vaadin.shared.communication.ServerRpc;
21
22 /**
23  * ServerRpc for MultiSelectionModel.
24  *
25  * @since 7.6
26  * @author Vaadin Ltd
27  */
28 public interface MultiSelectionModelServerRpc extends ServerRpc {
29
30     /**
31      * Select a list of rows based on their row keys on the server-side.
32      *
33      * @param rowKeys
34      *            list of row keys to select
35      */
36     public void select(List<String> rowKeys);
37
38     /**
39      * Deselect a list of rows based on their row keys on the server-side.
40      *
41      * @param rowKeys
42      *            list of row keys to deselect
43      */
44     public void deselect(List<String> rowKeys);
45
46     /**
47      * Selects all rows on the server-side.
48      */
49     public void selectAll();
50
51     /**
52      * Deselects all rows on the server-side.
53      */
54     public void deselectAll();
55 }