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
 
2
 
3
import com.google.gwt.core.client.GWT;
-
 
4
import com.google.gwt.uibinder.client.UiBinder;
-
 
5
import com.google.gwt.uibinder.client.UiField;
-
 
6
import com.google.gwt.user.client.ui.Composite;
-
 
7
import com.google.gwt.user.client.ui.HTMLPanel;
-
 
8
import com.google.gwt.user.client.ui.HasWidgets;
Line -... Line 9...
-
 
9
import com.google.gwt.user.client.ui.Widget;
-
 
10
 
-
 
11
public class PanneauPrincipalImageVue extends Composite implements PanneauPrincipalImagePresenteur.Vue {
-
 
12
	
-
 
13
	interface MyUiBinder extends UiBinder<Widget, PanneauPrincipalImageVue> {
-
 
14
	}
-
 
15
	private static MyUiBinder uiBinder = GWT.create(MyUiBinder.class);
-
 
16
	
-
 
17
	public PanneauPrincipalImageVue() {
-
 
18
		initWidget(uiBinder.createAndBindUi(this));
-
 
19
	}
-
 
20
	
-
 
21
	@Override
-
 
22
	public void ajouterAuParent(HasWidgets parent) {
3
public class PanneauPrincipalImageVue {
23
		parent.add(this);