Image.java :  » Network » snaio » org » elephantt » javabook » client » Android Open Source

Android Open Source » Network » snaio 
snaio » org » elephantt » javabook » client » Image.java
package org.elephantt.javabook.client;

public class Image {
  private String url;
  private String link;

  public Image(String url, String link) {
    this.url = url;
    this.link = link;
  }

  public String getUrl() {
    return url;
  }

  public String getLink() {
    return link;
  }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.