Subversion Repositories SmartDukaan

Rev

View as "text/plain" | Blame | Last modification | View Log | RSS feed

package com.spice.profitmandi.common.model;

public class MapWrapper<T, V> {
        private T key;
        private V value;
        public T getKey() {
                return key;
        }
        public void setKey(T key) {
                this.key = key;
        }
        public V getValue() {
                return value;
        }
        public void setValue(V value) {
                this.value = value;
        }
        
        @Override
        public String toString() {
                return "MapWrapper [key=" + key + ", value=" + value + "]";
        }
}