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

public class ResponderID {
	public City city;
	public short num;

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

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