Subversion Repositories eFlore/Applications.del

Rev

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

Rev 1393 Rev 1704
Line 1... Line 1...
1
package org.tela_botanica.del.client.composants.observations;
1
package org.tela_botanica.del.client.composants.observations;
Line 2... Line 2...
2
 
2
 
3
import com.google.gwt.core.client.GWT;
3
import com.google.gwt.core.client.GWT;
-
 
4
import com.google.gwt.event.dom.client.ClickHandler;
4
import com.google.gwt.event.dom.client.ClickHandler;
5
import com.google.gwt.event.shared.HandlerRegistration;
5
import com.google.gwt.uibinder.client.UiBinder;
6
import com.google.gwt.uibinder.client.UiBinder;
6
import com.google.gwt.uibinder.client.UiField;
7
import com.google.gwt.uibinder.client.UiField;
7
import com.google.gwt.user.client.ui.Composite;
8
import com.google.gwt.user.client.ui.Composite;
8
import com.google.gwt.user.client.ui.HTML;
9
import com.google.gwt.user.client.ui.HTML;
Line 24... Line 25...
24
	@UiField
25
	@UiField
25
	protected Panel photos;
26
	protected Panel photos;
Line 26... Line 27...
26
	
27
	
Line -... Line 28...
-
 
28
	protected HTML lienPlateforme = new HTML(">>>");
Line 27... Line 29...
27
	protected HTML lienPlateforme = new HTML(">>>");
29
 
28
 
30
	private HandlerRegistration imgPrincipaleClicGestionnaire;
29
 
31
 
Line 85... Line 87...
85
	}
87
	}
Line 86... Line 88...
86
 
88
 
87
	public HTML getLienPlateforme() {
89
	public HTML getLienPlateforme() {
88
		return lienPlateforme;
90
		return lienPlateforme;
-
 
91
	}
-
 
92
	
-
 
93
	public HandlerRegistration setImgPrincipaleClicGestionnaire(ClickHandler gestionnaireClic) {
-
 
94
		if (imgPrincipaleClicGestionnaire != null) {
-
 
95
			imgPrincipaleClicGestionnaire.removeHandler();
-
 
96
		}
-
 
97
		imgPrincipaleClicGestionnaire = photoPrincipale.addClickHandler(gestionnaireClic);
-
 
98
		return imgPrincipaleClicGestionnaire;
Line 89... Line 99...
89
	}
99
	}