Back to project page InfoWallpaper.
The source code is released under:
MIT License
If you think the Android project InfoWallpaper 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.andreashedin.infowallpaper; /*from w w w . ja va 2s . com*/ public class DisplayValuePair<T> { private String mDisplay; private T mValue; public DisplayValuePair(String display, T value) { mDisplay = display; mValue = value; } public String getDisplay() { return mDisplay; } @Override public String toString() { return getDisplay(); } public T getValue() { return mValue; } }