Subversion Repositories eFlore/Applications.del

Rev

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

Rev 178 Rev 208
Line 24... Line 24...
24
	}
24
	}
Line 25... Line 25...
25
 
25
 
Line 26... Line 26...
26
	private static MyUiBinder uiBinder = GWT.create(MyUiBinder.class);
26
	private static MyUiBinder uiBinder = GWT.create(MyUiBinder.class);
27
 
27
 
Line 28... Line 28...
28
	@UiField
28
	@UiField
29
	TextBox nomEspece;
29
	protected TextBox nomEspece;
Line 30... Line 30...
30
 
30
 
31
	@UiField
31
	@UiField
Line 32... Line 32...
32
	Panel panneauProtocole, panneauResultats;
32
	protected Panel panneauProtocole, panneauResultats;
33
 
33
 
Line 34... Line 34...
34
	@UiField
34
	@UiField
35
	Button boutonChercher;
35
	protected Button boutonChercher;
Line 36... Line 36...
36
 
36
 
37
	@UiField
37
	@UiField
38
	Label protocoleLabel;
-
 
39
 
38
	protected Label protocoleLabel;
40
	@UiField
39
 
Line 41... Line 40...
41
	ListBox listeProtocoles;
40
	@UiField
Line 42... Line 41...
42
 
41
	protected ListBox listeProtocoles;
43
	// Constructeur
42
 
44
	protected RechercheImageVue() {
43
	// Constructeur
Line 45... Line -...
45
 
-
 
46
		initWidget(uiBinder.createAndBindUi(this));
-
 
47
		nomEspece.setFocus(true);
-
 
48
 
-
 
49
	}
-
 
50
 
-
 
51
	public Panel getPanneauChargement() {
-
 
52
		return panneauChargement;
-
 
53
	}
-
 
54
 
-
 
55
	public TextBox getTextBox() {
-
 
56
		return nomEspece;
-
 
57
	}
-
 
58
 
-
 
59
	public Panel getPanel() {
-
 
60
		return mainPanel;
-
 
61
	}
44
	protected RechercheImageVue() {
62
 
45
		initWidget(uiBinder.createAndBindUi(this));
63
	public Button getBoutonChercher() {
46
		nomEspece.setFocus(true);
Line 64... Line -...
64
		return boutonChercher;
-
 
65
	}
-
 
66
 
-
 
67
	public ListBox getListeProtocoles() {
-
 
68
		return listeProtocoles;
47
 
69
	}
48
	}
70
 
49
 
Line -... Line 50...
-
 
50
	public Panel getPanneauChargement() {
71
	public void setListeProtocoles(ListBox listeProtocoles) {
51
		return panneauChargement;
72
		this.listeProtocoles = listeProtocoles;
52
	}
73
	}
53
 
Line 74... Line 54...
74
 
54
	public void setListeProtocoles(ListBox listeProtocoles) {