Project

General

Profile

1
package eu.dnetlib.domain.data;
2

    
3
public class FieldRow {
4
	
5
	private String value;
6
	private Integer count;
7
	
8
	public FieldRow(String value, Integer count) {
9
		this.value = value;
10
		this.count = count;
11
	}
12
	
13
	public FieldRow() {
14
		
15
	}
16
	
17
	public String getValue() {
18
		return value;
19
	}
20

    
21
	public void setValue(String value) {
22
		this.value = value;
23
	}
24
	
25
	public Integer getCount() {
26
		return count;
27
	}
28
	
29
	public void setCount(Integer count) {
30
		this.count = count;
31
	}
32

    
33
	@Override
34
	public String toString() {	
35
		StringBuffer buffer = new StringBuffer();
36
		buffer.append(value).append(" : ").append(count);
37
		
38
		return buffer.toString();
39
	}
40

    
41
}
42

    
43

    
(7-7/23)