diff --git a/rtd_phosphonetx/source/java/ch/systemsx/cisd/openbis/plugin/phosphonetx/client/web/client/application/PhosphoNetXModule.java b/rtd_phosphonetx/source/java/ch/systemsx/cisd/openbis/plugin/phosphonetx/client/web/client/application/PhosphoNetXModule.java index 33a9f6bab5abaf823b2d5e79bda967443301ba60..b74192caceebdcfadc948bc804d2303bdba00de0 100644 --- a/rtd_phosphonetx/source/java/ch/systemsx/cisd/openbis/plugin/phosphonetx/client/web/client/application/PhosphoNetXModule.java +++ b/rtd_phosphonetx/source/java/ch/systemsx/cisd/openbis/plugin/phosphonetx/client/web/client/application/PhosphoNetXModule.java @@ -16,6 +16,10 @@ package ch.systemsx.cisd.openbis.plugin.phosphonetx.client.web.client.application; +import java.util.List; + +import com.extjs.gxt.ui.client.widget.Component; +import com.google.gwt.user.client.rpc.AsyncCallback; import com.google.gwt.user.client.ui.Widget; import ch.systemsx.cisd.openbis.generic.client.web.client.application.IViewContext; @@ -41,4 +45,28 @@ public class PhosphoNetXModule implements IModule return new QueryMenu(viewContext); } + public List<Component> getMenuItems() + { + // TODO Auto-generated method stub + return null; + } + + public String getModuleDescription() + { + // TODO Auto-generated method stub + return null; + } + + public String getModuleName() + { + // TODO Auto-generated method stub + return null; + } + + public void initialize(AsyncCallback<Void> callback) + { + // TODO Auto-generated method stub + + } + }