summaryrefslogtreecommitdiffstats
path: root/src/main/java/derms/replica2/ResponderID.java
blob: 480b4716f867c7f5e15ca1bec169c30a44650d3a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package derms.replica2;

class ResponderID {
	City city;
	short num;

	ResponderID(City city, short num) {
		this.city = city;
		this.num = num;
	}

	@Override
	public String toString() {
		return ""+city+"R"+num;
	}
}