We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9415cc9 commit 236a1f4Copy full SHA for 236a1f4
src/main/java/com/flowingcode/vaadin/addons/demo/impl/TabbedDemoImpl.java
@@ -20,9 +20,14 @@
20
package com.flowingcode.vaadin.addons.demo.impl;
21
22
import com.flowingcode.vaadin.addons.demo.TabbedDemo;
23
+import com.vaadin.flow.component.Component;
24
25
@SuppressWarnings("serial")
26
@Deprecated
-public class TabbedDemoImpl extends TabbedDemo {
27
+public class TabbedDemoImpl<T> extends TabbedDemo {
28
+
29
+ public TabbedDemoImpl(Component demo, String name, String sourceCodeUrl) {
30
+ addDemo(demo, name, sourceCodeUrl);
31
+ }
32
33
}
0 commit comments