package org.simantics.simulation.project; /** * @author Tuukka Lehtonen */ public enum ExperimentManagerMode { /** * Experiment manager will never have two simultaneous active experiments. * Previous experiment will be disposed before a new one is started. */ SINGLE_EXPERIMENT, /** * Experiment manager can have many simultaneous active experiments. */ MULTI_EXPERIMENT }