import com.vaadin.shared.annotations.DelegateToWidget;
import com.vaadin.shared.data.sort.SortDirection;
import com.vaadin.shared.ui.AbstractSingleSelectState;
+import elemental.json.JsonArray;
/**
* The shared state for the {@link com.vaadin.ui.Grid} component.
/**
* The key in which a row's data can be found.
*
- * @see com.vaadin.shared.data.DataProviderRpc#setRowData(int, String)
+ * @see com.vaadin.shared.data.DataProviderRpc#setRowData(int, JsonArray)
*/
public static final String JSONKEY_DATA = "d";
/**
* The key in which a row's own key can be found.
*
- * @see com.vaadin.shared.data.DataProviderRpc#setRowData(int, String)
+ * @see com.vaadin.shared.data.DataProviderRpc#setRowData(int, JsonArray)
*/
public static final String JSONKEY_ROWKEY = "k";
/**
* The key in which a row's generated style can be found.
*
- * @see com.vaadin.shared.data.DataProviderRpc#setRowData(int, String)
+ * @see com.vaadin.shared.data.DataProviderRpc#setRowData(int, JsonArray)
*/
public static final String JSONKEY_ROWSTYLE = "rs";
/**
* The key in which a generated styles for a row's cells can be found.
*
- * @see com.vaadin.shared.data.DataProviderRpc#setRowData(int, String)
+ * @see com.vaadin.shared.data.DataProviderRpc#setRowData(int, JsonArray)
*/
public static final String JSONKEY_CELLSTYLES = "cs";
/**
* The key in which a row's description can be found.
*
- * @see com.vaadin.shared.data.DataProviderRpc#setRowData(int, String)
+ * @see com.vaadin.shared.data.DataProviderRpc#setRowData(int, JsonArray)
*/
public static final String JSONKEY_ROWDESCRIPTION = "rd";
/**
* The key in which a cell's description can be found.
*
- * @see com.vaadin.shared.data.DataProviderRpc#setRowData(int, String)
+ * @see com.vaadin.shared.data.DataProviderRpc#setRowData(int, JsonArray)
*/
public static final String JSONKEY_CELLDESCRIPTION = "cd";
/**
* The key that tells whether details are visible for the row.
*
- * @see com.vaadin.ui.Grid#setDetailsGenerator(com.vaadin.ui.Grid.DetailsGenerator)
+ * @see com.vaadin.ui.Grid#setDetailsGenerator(com.vaadin.ui.components.grid.DetailsGenerator)
* @see com.vaadin.ui.Grid#setDetailsVisible(Object, boolean)
* @see com.vaadin.shared.data.DataProviderRpc#setRowData(int,
* elemental.json.JsonArray)
/**
* The modes for height calculation that are supported by Grid (
- * {@link com.vaadin.client.ui.grid.Grid client} and
- * {@link com.vaadin.ui.components.grid.Grid server}) /
- * {@link com.vaadin.client.ui.grid.Escalator Escalator}.
+ * client ({@code com.vaadin.client.widgets.Grid}),
+ * server ({@code com.vaadin.ui.Grid server}), and
+ * Escalator ({@code com.vaadin.client.widgets.Escalator Escalator}).
*
* @since 7.4
* @author Vaadin Ltd
- * @see com.vaadin.client.ui.grid.Grid#setHeightMode(HeightMode)
- * @see com.vaadin.ui.components.grid.Grid#setHeightMode(HeightMode)
- * @see com.vaadin.client.ui.grid.Escalator#setHeightMode(HeightMode)
*/
public enum HeightMode {
/**
/**
* Asks the server to open the editor and bind data to it. When a bind
* request is sent, it must be acknowledged with a
- * {@link EditorClientRpc#confirmBind() confirm call} before the client can
+ * {@link EditorClientRpc#confirmBind(boolean) confirm call} before the client can
* open the editor.
*
* @param key
/**
* Asks the server to save unsaved changes in the editor to the bean. When a
* save request is sent, it must be acknowledged with a
- * {@link EditorClientRpc#confirmSave() confirm call}.
+ * {@link EditorClientRpc#confirmSave(boolean) confirm call}.
*/
void save();