@ComponentConfig(lifecycle = UIContainerLifecycle.class)
public class UISampleLazyTabPane extends UIContainer {
public UISampleLazyTabPane() throws Exception {
UILazyTabPane uiLazyTabPane = addChild(UILazyTabPane.class, null, null);
uiLazyTabPane.addChild(UISampleRightClickPopupMenu.class, null, null);
uiLazyTabPane.addChild(UISampleRepeater.class, null, null);
uiLazyTabPane.setSelectedTab(1);
}