Android Open Source - NASAImageOfTheDay Apod Feed Item






From Project

Back to project page NASAImageOfTheDay.

License

The source code is released under:

MIT License

If you think the Android project NASAImageOfTheDay 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.example.parser;
/*from   w  w  w  .  ja v  a2s  .co  m*/
public class ApodFeedItem {

  private String title;
  private String description ;
  private String date;
  private String imageUrl;
  
  
  public String getTitle() {
    return title;
  }
  public void setTitle(String title) {
    this.title = title;
  }
  public String getDescription() {
    return description;
  }
  public void setDescription(String description) {
    this.description = description;
  }
  public String getDate() {
    return date;
  }
  public void setDate(String date) {
    this.date = date;
  }
  public String getImageUrl() {
    return imageUrl;
  }
  public void setImageUrl(String imageUrl) {
    this.imageUrl = imageUrl;
  }
  @Override
  public String toString() {
    return "\nApodFeedItem [\ntitle=" + title + ", \ndescription=" + description
        + ", \ndate=" + date + ", \nimageUrl=" + imageUrl + "\n]";
  }
  
  
  
}




Java Source Code List

com.example.nasaproject.MainActivity.java
com.example.parser.ApodFeedItem.java
com.example.parser.BackgroundTask.java
com.example.parser.GetImageInBackground.java
com.example.parser.IotdHandler.java
com.example.parser.ReturnFromBackgroundTask.java