Back to project page music-inbox-android.
The source code is released under:
GNU General Public License
If you think the Android project music-inbox-android 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 org.musicinbox.android.rss; /*w w w. j a v a2 s . c o m*/ import java.util.List; import org.musicinbox.android.Utils; import android.net.Uri; /** * Represents an rss 2.0 channel. */ public class Channel { private final String title; private final Uri link; private final List<Item> items; public Channel(String title, Uri link, List<Item> items) { this.title = title; this.link = link; this.items = items; } public String getTitle() { return title; } public Uri getLink() { return link; } public List<Item> getItems() { return items; } @Override public String toString() { return Utils.toString(this); } }