Subversion Repositories eFlore/Applications.cel

Rev

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

Rev 1024 Rev 1025
Line 1... Line 1...
1
package org.tela_botanica.cel.client.vues.general.panneaugestionutilisateur;
1
package org.tela_botanica.cel.client.vues.general.panneaugestionutilisateur;
Line -... Line 2...
-
 
2
 
-
 
3
import org.tela_botanica.cel.client.composants.identification.FormulaireIdentificationPresenteur;
-
 
4
import org.tela_botanica.cel.client.composants.identification.FormulaireIdentificationVue;
-
 
5
import org.tela_botanica.cel.client.services.rest.UtilisateurServiceConcret;
-
 
6
 
-
 
7
import com.google.gwt.user.client.ui.HasWidgets;
2
 
8
 
Line -... Line 9...
-
 
9
public class PanneauGestionUtilisateurPresenteur {
-
 
10
 
-
 
11
	public interface Vue {
-
 
12
		void ajouterAuParent(HasWidgets parent);
-
 
13
		HasWidgets getPanneauFormulaireIdentification();
-
 
14
	}
-
 
15
	
-
 
16
	private Vue vue;
-
 
17
	
-
 
18
	private FormulaireIdentificationPresenteur formulaireIdentificationPresenteur;
-
 
19
	
-
 
20
	public PanneauGestionUtilisateurPresenteur(
-
 
21
			Vue vue) {
-
 
22
		this.vue = vue;
-
 
23
	}
-
 
24
 
-
 
25
	public void go(HasWidgets parent) {		
-
 
26
		formulaireIdentificationPresenteur = new FormulaireIdentificationPresenteur(new FormulaireIdentificationVue(), new UtilisateurServiceConcret());
-
 
27
		formulaireIdentificationPresenteur.go(vue.getPanneauFormulaireIdentification());
-
 
28
		
3
public class PanneauGestionUtilisateurPresenteur {
29
		vue.ajouterAuParent(parent);