Subversion Repositories eFlore/Applications.cel

Rev

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

Rev 1292 Rev 1323
Line 1... Line 1...
1
package org.tela_botanica.client.vues.observation;
1
package org.tela_botanica.client.vues.observation;
Line 2... Line 2...
2
 
2
 
-
 
3
import org.tela_botanica.client.modeles.objets.Configuration;
3
import org.tela_botanica.client.modeles.objets.Configuration;
4
import org.tela_botanica.client.modeles.objets.Utilisateur;
4
import org.tela_botanica.client.observation.ObservationMediateur;
5
import org.tela_botanica.client.observation.ObservationMediateur;
5
import com.google.gwt.user.client.ui.FileUpload;
6
import com.google.gwt.user.client.ui.FileUpload;
6
import com.google.gwt.user.client.ui.FormPanel;
7
import com.google.gwt.user.client.ui.FormPanel;
7
import com.google.gwt.user.client.ui.FormPanel.SubmitCompleteEvent;
8
import com.google.gwt.user.client.ui.FormPanel.SubmitCompleteEvent;
Line 27... Line 28...
27
	
28
	
Line 28... Line 29...
28
		this.oMediateur = om;
29
		this.oMediateur = om;
29
 
30
 
30
		nPan = new Window("Import d'observations");
31
		nPan = new Window("Import d'observations");
-
 
32
		identifiant = new Hidden();
Line 31... Line 33...
31
		identifiant = new Hidden();
33
		identifiant.setName("utilisateur");
32
		identifiant.setName("identifiant");
34
		identifiant.setValue(Utilisateur.getInstance().getIdentifiantUtilisateurConsulte());
Line 33... Line 35...
33
		
35
		
Line 82... Line 84...
82
	}
84
	}
Line 83... Line 85...
83
	
85
	
84
	public void afficher() {
86
	public void afficher() {
85
		nPan.show();
87
		nPan.show();
86
	}
-
 
87
	
-
 
88
	public void initialiserUtilisateur(String id) {
-
 
89
		identifiant.setValue(id);
-
 
90
	}
-
 
91
	
-
 
92
	
-
 
93
 
88
	}