PageInfo.java :  » Web » retain-android » com » retain » Android Open Source

Android Open Source » Web » retain android 
retain android » com » retain » PageInfo.java
package com.retain;

public class PageInfo {

  public long getRowId() {
    return rowId;
  }

  public String getTitle() {
    return title;
  }

  public String getUrl() {
    return url;
  }

  public String getFilePath() {
    return filePath;
  }

  public long getTimestamp() {
    return timestamp;
  }

  public float getScroll() {
    return scroll;
  }

  private long rowId;
  private String title;
  private String url;
  private String filePath;
  private long timestamp;
  private float scroll;
  
  public PageInfo( long rowId, String title, String url, String filePath, long timestamp, float scroll)
  {
    this.rowId = rowId;
    this.title = title;
    this.url   = url;
    this.filePath = filePath;
    this.timestamp = timestamp;
    this.scroll = scroll;
  }
  
}
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.