source: src/main/java/genius/core/tournament/VariablesAndValues/TotalSessionNumberValue.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: 435 bytes
Line 
1package genius.core.tournament.VariablesAndValues;
2
3public class TotalSessionNumberValue extends TournamentValue {
4
5 private static final long serialVersionUID = 1577274902162703852L;
6 private int value = 1;
7 public TotalSessionNumberValue() {
8
9 }
10 public TotalSessionNumberValue(int value) {
11 this.value = value;
12 }
13 public String toString() {return String.valueOf(value);}
14 public int getValue() { return value; }
15}
Note: See TracBrowser for help on using the repository browser.