package wto.prito.inf66268.util;

public class MapKey {	
	private char coll;
	private int row;
	
	
	public MapKey(char coll, int row) {	
		this.coll = coll;
		this.row = row;
	}
	
	public char getColl() {
		return coll;
	}
	
	private void setColl(char coll) {
		this.coll = coll;
	}
	
	public int getRow() {
		return row;
	}
	
	private void setRow(int row) {
		this.row = row;
	}	
}
