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.observation;
1
package org.tela_botanica.cel.client.vues.observation;
Line -... Line 2...
-
 
2
 
-
 
3
import com.google.gwt.user.client.ui.HasWidgets;
2
 
4
 
Line -... Line 5...
-
 
5
public class PanneauPrincipalObservationPresenteur {
-
 
6
 
-
 
7
	public interface Vue {
-
 
8
		void ajouterAuParent(HasWidgets parent);
-
 
9
		HasWidgets getPanneauFormulaireSaisieObservation();
-
 
10
		HasWidgets getPanneauListeObservation();	
-
 
11
	}
-
 
12
	
-
 
13
	private Vue vue;
-
 
14
	
-
 
15
	public PanneauPrincipalObservationPresenteur(Vue vue) {
-
 
16
		this.vue = vue;
-
 
17
	}
-
 
18
	
-
 
19
	public void go(HasWidgets parent) {
-
 
20
		vue.ajouterAuParent(parent);
3
public class PanneauPrincipalObservationPresenteur {
21
	}