aboutsummaryrefslogtreecommitdiffstats
path: root/testbench-api/src/main/java/com/vaadin/testbench
diff options
context:
space:
mode:
authorAleksi Hietanen <aleksi@vaadin.com>2017-02-23 09:34:59 +0200
committerPekka Hyvönen <pekka@vaadin.com>2017-02-23 09:34:59 +0200
commit6783bca88d4cf0c8944e84a0fef0a219c0b9a4d0 (patch)
tree4fe5a5752482f73c902beb4b5e05e647a2b6203b /testbench-api/src/main/java/com/vaadin/testbench
parent813a99cfeff9d9cd70d77bd5d9ae75f5fa7b2ff5 (diff)
downloadvaadin-framework-6783bca88d4cf0c8944e84a0fef0a219c0b9a4d0.tar.gz
vaadin-framework-6783bca88d4cf0c8944e84a0fef0a219c0b9a4d0.zip
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
Diffstat (limited to 'testbench-api/src/main/java/com/vaadin/testbench')
-rw-r--r--testbench-api/src/main/java/com/vaadin/testbench/elements/TreeGridElement.java25
1 files changed, 25 insertions, 0 deletions
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 {
+
+}