タブ付きのタブシートがあります。
TabSheet tabsheet = new TabSheet();
tabsheet.setSizeUndefined();
tabsheet.addTab(new Label("Contents of the first tab"),"Слои");
tabsheet.addTab(table, "Tab");
tabsheet.addTab(new Label("Contents of the third tab"),"Межевые планы");
ここで、horisontalLayout などの別のコンポーネントを 2 番目のタブに追加したいと考えています。
HorizontalLayout lo = new HorizontalLayout();
Button newContact = new Button();
Button search = new Button();
Button share = new Button();
Button help = new Button();
lo.addComponent(newContact);
lo.addComponent(search);
lo.addComponent(share);
lo.addComponent(help);
しかし、これを行う方法は?