Android Open Source - Instabackground Envelope Data






From Project

Back to project page Instabackground.

License

The source code is released under:

Apache License

If you think the Android project Instabackground 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 es.expilu.instabackground.model;
/*w w w. j a  v  a 2s.c o  m*/
import java.util.Date;

public class EnvelopeData {

  private String id;
  private String[] tags;
  private Location location;
  private Comments comments;
  private String filter;
  private Date created_time;
  private String link;
  private Likes likes;
  private Images images;
  private UsersInPhoto[] users_in_photo;
  private Caption caption;
  private String type;
  private User user;

  public String getId() {
    return id;
  }

  public void setId(String id) {
    this.id = id;
  }

  public String[] getTags() {
    return tags;
  }

  public void setTags(String[] tags) {
    this.tags = tags;
  }

  public Location getLocation() {
    return location;
  }

  public void setLocation(Location location) {
    this.location = location;
  }

  public Comments getComments() {
    return comments;
  }

  public void setComments(Comments comments) {
    this.comments = comments;
  }

  public String getFilter() {
    return filter;
  }

  public void setFilter(String filter) {
    this.filter = filter;
  }

  public Date getCreated_time() {
    return created_time;
  }

  public void setCreated_time(Date created_time) {
    this.created_time = created_time;
  }

  public String getLink() {
    return link;
  }

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

  public Likes getLikes() {
    return likes;
  }

  public void setLikes(Likes likes) {
    this.likes = likes;
  }

  public Images getImages() {
    return images;
  }

  public void setImages(Images images) {
    this.images = images;
  }

  public UsersInPhoto[] getUsers_in_photo() {
    return users_in_photo;
  }

  public void setUsers_in_photo(UsersInPhoto[] users_in_photo) {
    this.users_in_photo = users_in_photo;
  }

  public Caption getCaption() {
    return caption;
  }

  public void setCaption(Caption caption) {
    this.caption = caption;
  }

  public String getType() {
    return type;
  }

  public void setType(String type) {
    this.type = type;
  }

  public User getUser() {
    return user;
  }

  public void setUser(User user) {
    this.user = user;
  }
}




Java Source Code List

es.expilu.instabackground.activity.MainActivity.java
es.expilu.instabackground.model.Caption.java
es.expilu.instabackground.model.CommentsData.java
es.expilu.instabackground.model.Comments.java
es.expilu.instabackground.model.EnvelopeData.java
es.expilu.instabackground.model.Envelope.java
es.expilu.instabackground.model.From.java
es.expilu.instabackground.model.Image.java
es.expilu.instabackground.model.Images.java
es.expilu.instabackground.model.Likes.java
es.expilu.instabackground.model.Location.java
es.expilu.instabackground.model.Meta.java
es.expilu.instabackground.model.Position.java
es.expilu.instabackground.model.User.java
es.expilu.instabackground.model.UsersInPhoto.java
es.expilu.instabackground.net.GsonRequest.java
es.expilu.instabackground.net.InstagramApi.java
es.expilu.instabackground.net.InstagramClient.java
es.expilu.instabackground.net.InstagramImageRequest.java
es.expilu.instabackground.net.NearRequest.java
es.expilu.instabackground.net.PopularRequest.java
es.expilu.instabackground.net.event.InstagramImageRequestError.java
es.expilu.instabackground.net.event.InstagramImageRequestOk.java
es.expilu.instabackground.net.event.NearRequestError.java
es.expilu.instabackground.net.event.NearRequestOk.java
es.expilu.instabackground.net.event.PopularRequestError.java
es.expilu.instabackground.net.event.PopularRequestOk.java
es.expilu.instabackground.net.event.RequestError.java
es.expilu.instabackground.util.Fun.java
es.expilu.instabackground.util.Globals.java
es.expilu.instabackground.util.MyApplication.java