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

import derms.City;

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;
	}
}