// Add some components to the layout
layout.addComponent(new TextField(null, "Click here"));
layout.addComponent(new Link("Click here", null));
Select select = new Select(null, Arrays.asList("Click here"));
select.select("Click here");
layout.addComponent(select);
// Tab content
VerticalLayout l1 = new VerticalLayout();
l1.setMargin(true);