Subversion Repositories eFlore/Applications.del

Rev

Rev 221 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
221 gduche 1
package org.tela_botanica.del.client.composants.presenteur;
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.Button;
7
import com.google.gwt.user.client.ui.Composite;
8
import com.google.gwt.user.client.ui.HTMLPanel;
9
import com.google.gwt.user.client.ui.Widget;
10
 
11
public class PresenteurVue extends Composite {
12
 
13
	// Annotation can be used to change the name of the associated xml file
14
	// @UiTemplate("ObservationRechercheVue.ui.xml")
15
	interface MyUiBinder extends UiBinder<Widget, PresenteurVue> {
16
	}
17
 
18
	@UiField
19
	HTMLPanel overlay, overlayContenu;
20
 
21
	@UiField
22
	Button boutonFermer;
23
 
24
	private static MyUiBinder uiBinder = GWT.create(MyUiBinder.class);
25
 
26
	protected PresenteurVue() {
27
		initWidget(uiBinder.createAndBindUi(this));
28
	}
29
}