Subversion Repositories eFlore/Applications.del

Rev

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

Rev 144 Rev 172
Line 1... Line 1...
1
package org.tela_botanica.del.client.vues.plateformedetermination.vote.barrerepartition;
1
package org.tela_botanica.del.client.vues.plateformedetermination.vote.barrerepartition;
Line 2... Line -...
2
 
-
 
3
import java.util.ArrayList;
-
 
4
import java.util.List;
-
 
5
 
-
 
6
import org.tela_botanica.del.client.cache.CacheClient;
-
 
7
import org.tela_botanica.del.client.modeles.PropositionDetermination;
-
 
8
import org.tela_botanica.del.client.modeles.Protocole;
2
 
9
import org.tela_botanica.del.client.utils.MockDatasource;
-
 
10
import org.tela_botanica.del.client.vues.plateformedetermination.vote.EnsembleVotesVue;
-
 
Line -... Line 3...
-
 
3
import org.tela_botanica.del.client.utils.MockDatasource;
11
import org.tela_botanica.del.client.vues.plateformedetermination.vote.protocole.moyenne.MoyenneVoteProtocolePresenteur;
4
 
Line 12... Line 5...
12
 
5
import com.google.gwt.user.client.ui.HTML;
Line 13... Line 6...
13
import com.google.gwt.user.client.ui.HasWidgets;
6
import com.google.gwt.user.client.ui.HasWidgets;
Line 14... Line 7...
14
 
7
 
Line 15... Line 8...
15
public class BarreRepartitionVotePresenteur {
8
public class BarreRepartitionVotePresenteur {
16
	
9
	
17
	private BarreRepartitionVoteVue vue = new BarreRepartitionVoteVue();
-
 
18
 
10
	private BarreRepartitionVoteVue vue = new BarreRepartitionVoteVue();
Line 19... Line 11...
19
	private MockDatasource validationService = MockDatasource.getInstance();
11
 
20
 
-
 
21
	public void go(HasWidgets container) {
12
	private MockDatasource validationService = MockDatasource.getInstance();
22
		container.add(vue);
13
 
Line 23... Line 14...
23
		afficherVotes();
14
	public void go(HasWidgets container) {
24
	}
15
		container.add(vue);
25
 
16
	}
-
 
17
 
-
 
18
	public void afficherVotes(int pourcentage, String nomTaxon) {
-
 
19
		vue.afficherVotes(pourcentage, nomTaxon);
-
 
20
	}
26
	private void afficherVotes() {
21