Subversion Repositories eFlore/Applications.del

Rev

Rev 1066 | Rev 1209 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
9 benjamin 1
package org.tela_botanica.del.client.modeles;
2
 
3
import java.io.Serializable;
227 aurelien 4
import java.util.HashMap;
5
import java.util.Map;
9 benjamin 6
 
1003 benjamin 7
import com.google.gwt.user.client.Window;
8
 
663 benjamin 9
public class PropositionDetermination extends InterventionForum implements Serializable {
9 benjamin 10
 
11
	private static final long serialVersionUID = 840032625524143547L;
1104 gduche 12
	private String id, espece, commentaire, numNomenclatural;
919 aurelien 13
	private int nbCommentaires = 0;
890 gduche 14
 
232 gduche 15
	private Map<String, VoteDetermination> votesDeterminations = new HashMap<String, VoteDetermination>();
835 aurelien 16
	private Observation observation;
922 benjamin 17
 
890 gduche 18
	public PropositionDetermination(String id, Contributeur contributeur, String texte) {
19
		setId(id);
20
		setContributeur(contributeur);
911 aurelien 21
		setCommentaire(texte);
890 gduche 22
	}
922 benjamin 23
 
835 aurelien 24
	public PropositionDetermination(Observation observation) {
25
		this.observation = observation;
26
	}
9 benjamin 27
 
1051 gduche 28
	public boolean estPropositionInitiale() {
29
		return (this.espece.equals(this.observation.getNomRetenu()) && this.getContributeur().getNomComplet().equals(this.observation.getAuteur()));
30
	}
31
 
141 aurelien 32
	public void ajouterVoteDetermination(VoteDetermination vd) {
227 aurelien 33
		votesDeterminations.put(vd.getContributeur(), vd);
9 benjamin 34
	}
35
 
896 aurelien 36
	public String getId() {
37
		return id;
38
	}
39
 
40
	public void setId(String id) {
41
		this.id = id;
42
	}
43
 
90 aurelien 44
	public String getEspece() {
45
		return espece;
46
	}
47
 
48
	public void setEspece(String espece) {
49
		this.espece = espece;
50
	}
147 benjamin 51
 
227 aurelien 52
	public Map<String, VoteDetermination> getVotesDeterminations() {
147 benjamin 53
		return votesDeterminations;
54
	}
55
 
227 aurelien 56
	public void setVotesDeterminations(Map<String, VoteDetermination> votesDeterminations) {
147 benjamin 57
		this.votesDeterminations = votesDeterminations;
58
	}
922 benjamin 59
 
835 aurelien 60
	public boolean utilisateurAVotePourDetermination(String idContributeur) {
61
		return votesDeterminations.containsKey(idContributeur);
62
	}
658 benjamin 63
 
835 aurelien 64
	public Observation getObservation() {
65
		return observation;
66
	}
67
 
68
	public void setObservation(Observation observation) {
69
		this.observation = observation;
70
	}
922 benjamin 71
 
896 aurelien 72
	public void setCommentaire(String commentaire) {
73
		this.commentaire = commentaire;
74
	}
835 aurelien 75
 
907 aurelien 76
	public String getCommentaire() {
896 aurelien 77
		return commentaire;
78
	}
922 benjamin 79
 
919 aurelien 80
	public void setNbCommentaires(int nbCommentaires) {
81
		this.nbCommentaires = nbCommentaires;
82
	}
922 benjamin 83
 
919 aurelien 84
	public int getTotalCommentaires() {
933 aurelien 85
		// le nombre de commentaire peut avoir été renvoyé par le web service
86
		// sans que l'on possède la liste des commentaires elle même, auquel cas, il sera différent de 0
87
		// et ne doit pas être recalculé
88
		if (nbCommentaires == 0 && this.listeCommentaires.size() != 0) {
922 benjamin 89
			nbCommentaires = super.getTotalCommentaires();
90
			if (this.getCommentaire() != null&&this.getCommentaire()!="") {
91
				nbCommentaires += 1;
92
			}
919 aurelien 93
		}
1066 gduche 94
		if (this.commentaire != null && !this.commentaire.equals("")) {
95
			nbCommentaires ++;
96
		}
922 benjamin 97
 
919 aurelien 98
		return nbCommentaires;
99
	}
1104 gduche 100
 
101
	public String getNumNomenclatural() {
102
		return numNomenclatural;
103
	}
104
 
105
	public void setNumNomenclatural(String numNomenclatural) {
106
		this.numNomenclatural = numNomenclatural;
107
	}
9 benjamin 108
}