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;
}
}
|