File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
src/test/java/com/flowingcode/vaadin/addons/twincolgrid Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 2121
2222import com .flowingcode .vaadin .addons .DemoLayout ;
2323import com .flowingcode .vaadin .addons .GithubLink ;
24- import com .flowingcode .vaadin .addons .demo .impl . TabbedDemoImpl ;
24+ import com .flowingcode .vaadin .addons .demo .TabbedDemo ;
2525import com .vaadin .flow .component .dependency .StyleSheet ;
2626import com .vaadin .flow .component .orderedlayout .VerticalLayout ;
2727import com .vaadin .flow .router .Route ;
@@ -40,11 +40,11 @@ public class TwincolDemoView extends VerticalLayout {
4040 private static final String DRAGNDROP_SOURCE = "https://github.com/FlowingCode/TwinColGridAddon/blob/master/src/test/java/com/flowingcode/vaadin/addons/twincolgrid/DragAndDropDemo.java" ;
4141
4242 public TwincolDemoView () {
43- TabbedDemoImpl < DragAndDropDemo > twincolDemo = new TabbedDemoImpl <>( new DragAndDropDemo (), DRAGNDROP_DEMO ,
44- DRAGNDROP_SOURCE );
45- twincolDemo .addDemo (new FilterableDemo (), FILTERABLE_DEMO , FILTERABLE_SOURCE );
46- twincolDemo .addDemo (new BoundDemo (), BOUND_DEMO , BOUND_SOURCE );
47- add (twincolDemo );
43+ TabbedDemo demo = new TabbedDemo ();
44+ demo . addDemo ( new DragAndDropDemo (), DRAGNDROP_DEMO , DRAGNDROP_SOURCE );
45+ demo .addDemo (new FilterableDemo (), FILTERABLE_DEMO , FILTERABLE_SOURCE );
46+ demo .addDemo (new BoundDemo (), BOUND_DEMO , BOUND_SOURCE );
47+ add (demo );
4848 setSizeFull ();
4949 }
5050}
You can’t perform that action at this time.
0 commit comments