From 6783bca88d4cf0c8944e84a0fef0a219c0b9a4d0 Mon Sep 17 00:00:00 2001 From: Aleksi Hietanen Date: Thu, 23 Feb 2017 09:34:59 +0200 Subject: Add initial implementation of TreeGrid (#8572) * Add initial implementation of TreeGrid * Refactor TreeGrid and related classes * Fix potential class cast exception in TreeGrid#getDataProvider * Add smoke tests for TreeGrid * Add communication constants for TreeGrid Use shared constant values for hierarchy data serialization and deserialization * Fix event ordering in TreeGrid, add javadocs, keyboard navigation test * TreeGrid improvements * Add TreeGrid.getDataProvider to StateGetDoesNotMarkDirtyTest exclude list * Merge remote-tracking branch 'github/master' into tree-grid * Remove getEscalator override from TreeGrid --- .../vaadin/testbench/elements/TreeGridElement.java | 25 ++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 testbench-api/src/main/java/com/vaadin/testbench/elements/TreeGridElement.java (limited to 'testbench-api/src') diff --git a/testbench-api/src/main/java/com/vaadin/testbench/elements/TreeGridElement.java b/testbench-api/src/main/java/com/vaadin/testbench/elements/TreeGridElement.java new file mode 100644 index 0000000000..71c47bcc6e --- /dev/null +++ b/testbench-api/src/main/java/com/vaadin/testbench/elements/TreeGridElement.java @@ -0,0 +1,25 @@ +/* + * Copyright 2000-2016 Vaadin Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); you may not + * use this file except in compliance with the License. You may obtain a copy of + * the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations under + * the License. + */ +package com.vaadin.testbench.elements; + +/** + * TestBench Element API for TreeGrid + * + * @author Vaadin Ltd + */ +public class TreeGridElement extends GridElement { + +} -- cgit v1.2.3