Back to project page GreenGear.
The source code is released under:
MIT License
If you think the Android project GreenGear listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.bradleycurran.greengear.model; /*from ww w . ja v a 2s .co m*/ public class KeyValue<T> { private String mKey; private T mValue; public KeyValue(String key, T value) { mKey = key; mValue = value; } public String getKey() { return mKey; } public T getValue() { return mValue; } }