source: src/main/java/genius/core/tournament/VariablesAndValues/TournamentOptionsValue.java

Last change on this file was 127, checked in by Wouter Pasman, 6 years ago

#41 ROLL BACK of rev.126 . So this version is equal to rev. 125

File size: 496 bytes
Line 
1package genius.core.tournament.VariablesAndValues;
2
3import java.util.HashMap;
4
5public class TournamentOptionsValue extends TournamentValue {
6
7 private static final long serialVersionUID = 1L;
8 HashMap<String, Integer> options = new HashMap<String, Integer>();
9
10 public TournamentOptionsValue(HashMap<String, Integer> options) { this.options = options; }
11
12 public String toString() { return options.toString(); }
13
14 public HashMap<String, Integer> getValue(){ return options; }
15}
Note: See TracBrowser for help on using the repository browser.