use of com.haulmont.cuba.gui.components.VBoxLayout in project cuba by cuba-platform.
the class AppWorkAreaLoader method createComponent.
@Override
public void createComponent() {
resultComponent = (AppWorkArea) factory.createComponent(AppWorkArea.NAME);
loadId(resultComponent, element);
Element initialLayoutElement = element.element("initialLayout");
initialLayoutLoader = getLoader(initialLayoutElement, VBoxLayout.NAME);
initialLayoutLoader.createComponent();
VBoxLayout initialLayout = (VBoxLayout) initialLayoutLoader.getResultComponent();
resultComponent.setInitialLayout(initialLayout);
}
Aggregations