Project

General

Profile

1
package eu.dnetlib.domain.data;
2

    
3
public class SimilarDocument {
4

    
5
	private String id;
6
	private float score;
7

    
8
	public String getId() {
9
		return id;
10
	}
11

    
12
	public void setId(String id) {
13
		this.id = id;
14
	}
15

    
16
	public float getScore() {
17
		return score;
18
	}
19

    
20
	public void setScore(float score) {
21
		this.score = score;
22
	}
23

    
24
}
(20-20/23)