Back to project page RecyclerViewLib.
The source code is released under:
Apache License
If you think the Android project RecyclerViewLib 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.twotoasters.recycled; //from w w w .ja va2s . co m import java.io.Serializable; public class Item implements Serializable { private final String mName; public Item(String name) { this.mName = name; } @Override public String toString() { return mName; } }