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