/** * */ package org.gcube.portlets.user.dataminermanager.client.dataspace; import com.sencha.gxt.core.client.util.Margins; import com.sencha.gxt.widget.core.client.container.SimpleContainer; import com.sencha.gxt.widget.core.client.container.VerticalLayoutContainer; import com.sencha.gxt.widget.core.client.container.VerticalLayoutContainer.VerticalLayoutData; public class DataSpacePanel extends SimpleContainer { /** * */ public DataSpacePanel() { super(); VerticalLayoutContainer v=new VerticalLayoutContainer(); ImportedDataPanel importedDataPanel=new ImportedDataPanel(); ComputedDataPanel computedDataPanel=new ComputedDataPanel(); v.add(importedDataPanel,new VerticalLayoutData(1, 0.5, new Margins(0))); v.add(computedDataPanel,new VerticalLayoutData(1, 0.5, new Margins(0))); add(v); } }