Back to project page RssSample.
The source code is released under:
Apache License
If you think the Android project RssSample 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.sample.rsssample; /*from w w w .j a v a 2s. c o m*/ public class Item { // ????????? // ??????? private CharSequence mTitle; private CharSequence mDescription; public Item() { mTitle = ""; mDescription = ""; } public CharSequence getDescription() { return mDescription; } public void setDescription(CharSequence description) { mDescription = description; } public CharSequence getTitle() { return mTitle; } public void setTitle(CharSequence title) { mTitle = title; } }