Back to project page sharemore.
The source code is released under:
GNU General Public License
If you think the Android project sharemore 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.moarub.db; //w w w.j av a2s . c o m public class ListItem { private String fName; private String fResourceUri; private long fId; public ListItem(String name, long l) { fName = name; fId = l; } public void setResourceUri(String rUri) { fResourceUri = rUri; } public long getId() { return fId; } @Override public String toString() { return fName; } public String getUri() { return fResourceUri; } }