Back to project page egotrip.
The source code is released under:
Apache License
If you think the Android project egotrip 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 net.myegotrip.egotrip.utils; //from w w w . java 2 s .co m public class IconItem { public final String text; public final int icon; public IconItem(String text, Integer icon) { this.text = text; this.icon = icon; } @Override public String toString() { return text; } }