Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
23780 ashik.ali 1
package com.spice.profitmandi.common.model;
2
 
3
public class MapWrapper<T, V> {
4
	private T key;
5
	private V value;
6
	public T getKey() {
7
		return key;
8
	}
9
	public void setKey(T key) {
10
		this.key = key;
11
	}
12
	public V getValue() {
13
		return value;
14
	}
15
	public void setValue(V value) {
16
		this.value = value;
17
	}
18
 
19
	@Override
20
	public String toString() {
21
		return "MapWrapper [key=" + key + ", value=" + value + "]";
22
	}
23
}