TimeBundle.java :  » Web » memento-browser » dev » memento » Android Open Source

Android Open Source » Web » memento browser 
memento browser » dev » memento » TimeBundle.java
package dev.memento;

public class TimeBundle {

  private String mUrl;
  private String mRel;
  
  public TimeBundle(Link link) {
    mUrl = link.getUrl();
    mRel = link.getRel();
  }
  
  public String getUrl() {
    return mUrl;
  }
  
  public void setUrl(String url) {
    this.mUrl = url;
  }
  
  public String getRel() {
    return mRel;
  }
  
  public void setRel(String rel) {
    this.mRel = rel;
  }
  
  @Override
  public String toString() {
    return "TimeBundle: url=[" + mUrl + "] rel=[" + mRel + "]";
  }
}
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.