Android Open Source - democracynow-android Rss Item






From Project

Back to project page democracynow-android.

License

The source code is released under:

GNU General Public License

If you think the Android project democracynow-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.

Java Source Code

package com.workingagenda.another.freedemocracynow;
/*from  w  ww. j  a v a 2 s. com*/
/*
 * Copyright (C) 2014 Shirwa Mohamed <shirwa99@gmail.com>
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

public class RssItem {
    String title;
    String description;
    String link;
    String imageUrl;
    String videoUrl;

    public String getDescription() {
        return description;
    }

    public String getImageUrl() {
        return imageUrl;
    }

    public String getVideoUrl() {return videoUrl;}


    public void setImageUrl(String imageUrl) {
        this.imageUrl = imageUrl;
    }
    public void setVideoUrl(String videoUrl) { this.videoUrl = videoUrl; }

    public String getTitle() {
        return title;
    }

    public String getLink() {
        return link;
    }

    public void setLink(String link) {
        this.link = link;
    }

    public void setDescription(String description) {
        this.description = description;
    }

    public void setTitle(String title) {
        this.title = title;
    }
}




Java Source Code List

com.workingagenda.another.freedemocracynow.MainActivity.java
com.workingagenda.another.freedemocracynow.RssHandler.java
com.workingagenda.another.freedemocracynow.RssItem.java
com.workingagenda.another.freedemocracynow.RssReader.java
com.workingagenda.another.freedemocracynow.aboutActivity.java