Subversion Repositories eFlore/Applications.del

Rev

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

Rev 965 Rev 973
Line 26... Line 26...
26
 
26
 
27
	interface DetailListeVotesDeterminationVueUIiBinder extends UiBinder<Widget, DetailListeVotesDeterminationVue> {
27
	interface DetailListeVotesDeterminationVueUIiBinder extends UiBinder<Widget, DetailListeVotesDeterminationVue> {
Line 28... Line 28...
28
	};
28
	};
29
	
29
	
Line 30... Line 30...
30
	@UiField
30
	@UiField
31
	HTMLPanel titre, aucuneDonnees;
31
	HTMLPanel titre, auteur, aucuneDonnees;
Line 32... Line 32...
32
	
32
	
Line 44... Line 44...
44
	public void afficherVotes(PropositionDetermination propositionDetermination) {
44
	public void afficherVotes(PropositionDetermination propositionDetermination) {
Line 45... Line 45...
45
		
45
		
46
		HTML htmlTitre = new HTML(propositionDetermination.getEspece());
46
		HTML htmlTitre = new HTML(propositionDetermination.getEspece());
Line -... Line 47...
-
 
47
		titre.add(htmlTitre);
-
 
48
		
-
 
49
		HTML htmlAuteur = new HTML(I18n.getVocabulary().proposePar()+propositionDetermination.getAuteur());
47
		titre.add(htmlTitre);
50
		auteur.add(htmlAuteur);
48
		
51
		
Line 49... Line 52...
49
		Map<String, VoteDetermination> listeVotes = propositionDetermination.getVotesDeterminations();
52
		Map<String, VoteDetermination> listeVotes = propositionDetermination.getVotesDeterminations();
50
		htmlTableau.clear();
53
		htmlTableau.clear();