Last change
on this file was 127, checked in by Wouter Pasman, 7 years ago |
#41 ROLL BACK of rev.126 . So this version is equal to rev. 125
|
File size:
428 bytes
|
Line | |
---|
1 | package genius.core.tournament.VariablesAndValues;
|
---|
2 |
|
---|
3 | import genius.core.repository.ProtocolRepItem;
|
---|
4 |
|
---|
5 | public class ProtocolValue extends TournamentValue {
|
---|
6 | private static final long serialVersionUID = -2565640538778156974L;
|
---|
7 | ProtocolRepItem value;
|
---|
8 |
|
---|
9 | public ProtocolValue(ProtocolRepItem val) { value=val; }
|
---|
10 | public String toString() { return value.getName(); }
|
---|
11 | public ProtocolRepItem getValue() { return value; }
|
---|
12 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.