source: java/main/src/main/java/com/framsticks/experiment/SimulatorSpecification.java @ 193

Last change on this file since 193 was 193, checked in by Maciej Komosinski, 10 years ago

Set svn:eol-style native for all textual files

  • Property svn:eol-style set to native
File size: 545 bytes
Line 
1package com.framsticks.experiment;
2
3public class SimulatorSpecification {
4
5        protected final Experiment experiment;
6        protected final String definition;
7
8        /**
9         * @param experiment
10         * @param definition
11         */
12        public SimulatorSpecification(Experiment experiment, String definition) {
13                this.experiment = experiment;
14                this.definition = definition;
15        }
16
17        /**
18         * @return the experiment
19         */
20        public Experiment getExperiment() {
21                return experiment;
22        }
23
24        /**
25         * @return the definition
26         */
27        public String getDefinition() {
28                return definition;
29        }
30
31}
Note: See TracBrowser for help on using the repository browser.