data-miner-manager/src/main/java/org/gcube/portlets/user/dataminermanager/client/dataspace/DataSpacePanel.java

28 lines
830 B
Java

/**
*
*/
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);
}
}