Subversion Repositories eFlore/Applications.del

Rev

Rev 348 | Rev 449 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 348 Rev 447
Line 5... Line 5...
5
import java.util.List;
5
import java.util.List;
Line 6... Line 6...
6
 
6
 
Line 7... Line 7...
7
public class Observation implements Serializable {
7
public class Observation implements Serializable {
8
 
8
 
Line 9... Line 9...
9
	private static final long serialVersionUID = 840032625524143547L;
9
	private static final long serialVersionUID = 840032625524143547L;
10
	private String id, auteur, species, nomRetenu, famille, localite, date, numNomenclatural;
10
	private String id, auteur, species, nomRetenu, famille, localite, date, numNomenclatural, nomCommun, lieuDit, milieu, commentaire;
11
 
11
 
Line 27... Line 27...
27
 
27
 
28
	public void setNomRetenu(String commonName) {
28
	public void setNomRetenu(String commonName) {
29
		this.nomRetenu = commonName;
29
		this.nomRetenu = commonName;
Line -... Line 30...
-
 
30
	}
-
 
31
 
-
 
32
	public String getNomCommun() {
-
 
33
		return nomCommun;
-
 
34
	}
-
 
35
	
-
 
36
	public void setNomCommun(String nomCommun) {
-
 
37
		this.nomCommun = nomCommun;
-
 
38
	}
-
 
39
	
-
 
40
	public String getLieuDit() {
-
 
41
		return this.lieuDit;
-
 
42
	}
-
 
43
	
-
 
44
	public void setLieuDit(String lieuDit) {
-
 
45
		this.lieuDit = lieuDit;
-
 
46
	}
-
 
47
	
-
 
48
	public String getMilieu() {
-
 
49
		return milieu;
-
 
50
	}
-
 
51
	
-
 
52
	public void setMilieu(String milieu) {
-
 
53
		this.milieu = milieu;
-
 
54
	}
-
 
55
	
-
 
56
	public String getCommentaire() {
-
 
57
		return commentaire;
-
 
58
	}
-
 
59
	
-
 
60
	public void setCommentaire(String commentaire) {
-
 
61
		this.commentaire = commentaire;
30
	}
62
	}
31
 
63
	
32
	public String getFamille() {
64
	public String getFamille() {
Line 33... Line 65...
33
		return famille;
65
		return famille;
Line 74... Line 106...
74
	}
106
	}
Line 75... Line 107...
75
 
107
 
76
	public void setMotsClefs(List<String> motsClefs) {
108
	public void setMotsClefs(List<String> motsClefs) {
77
		this.motsClefs = motsClefs;
109
		this.motsClefs = motsClefs;
-
 
110
	}
-
 
111
	
-
 
112
	public void ajouterMotsClef(String motsClefs) {
-
 
113
		if (this.motsClefs == null) {
-
 
114
			this.motsClefs = new ArrayList<String>();
-
 
115
		}
-
 
116
		this.motsClefs.add(motsClefs);
Line 78... Line 117...
78
	}
117
	}
79
 
118
 
80
	public void addImageCelValidationData(PropositionDetermination observationValidation) {
119
	public void addImageCelValidationData(PropositionDetermination observationValidation) {