Subversion Repositories eFlore/Applications.del

Rev

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

Rev 901 Rev 909
Line 18... Line 18...
18
	public interface Vue extends IsWidget {
18
	public interface Vue extends IsWidget {
19
		public void afficherVotes(PropositionDetermination propositionDetermination);
19
		public void afficherVotes(PropositionDetermination propositionDetermination);
20
		void ajouterVote(VoteDetermination vote);
20
		void ajouterVote(VoteDetermination vote);
21
		void stopChargement();
21
		void stopChargement();
22
		void startChargement();
22
		void startChargement();
-
 
23
		public void afficherAucuneDonnees();
23
	}
24
	}
Line 24... Line 25...
24
	
25
	
Line 25... Line 26...
25
	private Vue vue;
26
	private Vue vue;
Line 42... Line 43...
42
				HashMap<String, VoteDetermination> votesComplets = UtilitairesServiceResultat.parserRetourListeVotesDetermination(messageRetour, propositionDetermination);
43
				HashMap<String, VoteDetermination> votesComplets = UtilitairesServiceResultat.parserRetourListeVotesDetermination(messageRetour, propositionDetermination);
43
				if(votesComplets != null) {
44
				if(votesComplets != null) {
44
					propositionDetermination.setVotesDeterminations(UtilitairesServiceResultat.parserRetourListeVotesDetermination(messageRetour, propositionDetermination));
45
					propositionDetermination.setVotesDeterminations(UtilitairesServiceResultat.parserRetourListeVotesDetermination(messageRetour, propositionDetermination));
45
					vue.afficherVotes(propositionDetermination);
46
					vue.afficherVotes(propositionDetermination);
46
					vue.stopChargement();
47
					vue.stopChargement();
-
 
48
				} else {
-
 
49
					vue.afficherAucuneDonnees();
-
 
50
					vue.stopChargement();
47
				}
51
				}
Line 48... Line 52...
48
 
52
 
Line 49... Line 53...
49
			}
53
			}