Project

General

Profile

1
package eu.dnetlib.functionality.modular.ui.lightui.objects;
2

    
3
public class SearchResult {
4

    
5
	private int currPage;
6
	private int totalPages;
7
	private long total;
8

    
9
	private String html;
10

    
11
	public SearchResult() {
12
	}
13

    
14
	public SearchResult(int currPage, int totalPages, long total, String html) {
15
		super();
16
		this.currPage = currPage;
17
		this.totalPages = totalPages;
18
		this.total = total;
19
		this.html = html;
20
	}
21

    
22
	public int getCurrPage() {
23
		return currPage;
24
	}
25

    
26
	public void setCurrPage(int currPage) {
27
		this.currPage = currPage;
28
	}
29

    
30
	public int getTotalPages() {
31
		return totalPages;
32
	}
33

    
34
	public void setTotalPages(int totalPages) {
35
		this.totalPages = totalPages;
36
	}
37

    
38
	public String getHtml() {
39
		return html;
40
	}
41

    
42
	public void setHtml(String html) {
43
		this.html = html;
44
	}
45

    
46
	public long getTotal() {
47
		return total;
48
	}
49

    
50
	public void setTotal(long total) {
51
		this.total = total;
52
	}
53

    
54
}
(6-6/7)