package com.framsticks.experiment; public class SimulatorSpecification { protected final Experiment experiment; protected final String definition; /** * @param experiment * @param definition */ public SimulatorSpecification(Experiment experiment, String definition) { this.experiment = experiment; this.definition = definition; } /** * @return the experiment */ public Experiment getExperiment() { return experiment; } /** * @return the definition */ public String getDefinition() { return definition; } }