Skip to content
Snippets Groups Projects
Commit 32b68dec authored by felmer's avatar felmer
Browse files

SE-316 MS_QUANTIFICTAION added to the collection of experiment types which...

SE-316 MS_QUANTIFICTAION added to the collection of experiment types which have protein viewer in details view

SVN: 18889
parent a78570d1
No related branches found
No related tags found
No related merge requests found
...@@ -16,7 +16,9 @@ ...@@ -16,7 +16,9 @@
package ch.systemsx.cisd.openbis.plugin.phosphonetx.client.web.client.application; package ch.systemsx.cisd.openbis.plugin.phosphonetx.client.web.client.application;
import java.util.Arrays;
import java.util.Collections; import java.util.Collections;
import java.util.HashSet;
import java.util.Set; import java.util.Set;
import ch.systemsx.cisd.openbis.generic.client.web.client.ICommonClientServiceAsync; import ch.systemsx.cisd.openbis.generic.client.web.client.ICommonClientServiceAsync;
...@@ -77,7 +79,7 @@ public class ClientPluginFactory extends AbstractClientPluginFactory<ViewContext ...@@ -77,7 +79,7 @@ public class ClientPluginFactory extends AbstractClientPluginFactory<ViewContext
{ {
if (entityKind == EntityKind.EXPERIMENT) if (entityKind == EntityKind.EXPERIMENT)
{ {
return Collections.singleton("MS_SEARCH"); return new HashSet<String>(Arrays.asList("MS_SEARCH", "MS_QUANTIFICATION"));
} }
return Collections.emptySet(); return Collections.emptySet();
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment