Subversion Repositories eFlore/Applications.del

Rev

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

Rev 445 Rev 447
Line 1... Line 1...
1
package org.tela_botanica.del.client.vues.plateformedetermination;
1
package org.tela_botanica.del.client.vues.plateformedetermination;
Line 2... Line 2...
2
 
2
 
Line 3... Line 3...
3
import java.util.List;
3
import java.util.List;
-
 
4
 
-
 
5
import org.tela_botanica.del.client.cache.CacheClient;
4
 
6
import org.tela_botanica.del.client.composants.metadonnees.MetadonneesPresenteur;
5
import org.tela_botanica.del.client.cache.CacheClient;
7
import org.tela_botanica.del.client.composants.metadonnees.MetadonneesVue;
6
import org.tela_botanica.del.client.composants.presenteur.Presenteur;
8
import org.tela_botanica.del.client.composants.presenteur.Presenteur;
7
import org.tela_botanica.del.client.modeles.MoyenneVote;
9
import org.tela_botanica.del.client.modeles.MoyenneVote;
8
import org.tela_botanica.del.client.modeles.VoteDetermination;
10
import org.tela_botanica.del.client.modeles.VoteDetermination;
Line 43... Line 45...
43
		public VerticalPanel getVote();
45
		public VerticalPanel getVote();
Line 44... Line 46...
44
 
46
 
Line 45... Line 47...
45
		public VerticalPanel getBarreRepartition();
47
		public VerticalPanel getBarreRepartition();
-
 
48
 
-
 
49
		public Button getBoutonAjoutProposition();
46
 
50
		
Line 47... Line 51...
47
		public Button getBoutonAjoutProposition();
51
		public HasWidgets getMetadonnees();
Line 48... Line 52...
48
	}
52
	}
Line 56... Line 60...
56
	}
60
	}
Line 57... Line 61...
57
 
61
 
Line 58... Line 62...
58
	public void go(HasWidgets composite) {
62
	public void go(HasWidgets composite) {
59
 
-
 
60
		if (CacheClient.getInstance().getImageCourante() != null) {
63
 
61
			// new DetailImageObservationPresenteur(new
64
		if (CacheClient.getInstance().getImageCourante() != null) {
62
			// DetailImageObservationVue()).go(vue.getDetailImageObservation());
65
			new MetadonneesPresenteur(new MetadonneesVue(), CacheClient.getInstance().getObservationCourante()).go(vue.getMetadonnees());
63
			new ObservationImagesPresenteur(new ObservationImagesVue(), CacheClient.getInstance().getObservationCourante()).go(vue.getDetailImageObservation());
66
			new ObservationImagesPresenteur(new ObservationImagesVue(), CacheClient.getInstance().getObservationCourante()).go(vue.getDetailImageObservation());
64
			new EnsembleVotesPresenteur(new EnsembleVotesVue()).go(vue.getVote());
67
			new EnsembleVotesPresenteur(new EnsembleVotesVue()).go(vue.getVote());
65
		}
68
		}