Back to project page Android-Sample-App.
The source code is released under:
End-User License Agreement for Sharethrough Software Product This End-User License Agreement (?EULA??) is a legal agreement between you (either an individual or a single entity) (?the End User?...
If you think the Android project Android-Sample-App 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.sharethrough.sample; /*from w w w. ja v a 2 s . c o m*/ public class FeedItem { public final String title; public final String description; public final int imageResourceId; public FeedItem(int imageResourceId, String title, String description) { this.title = title; this.description = description; this.imageResourceId = imageResourceId; } }