Subversion Repositories eFlore/Applications.del

Rev

Rev 478 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 478 Rev 590
Line 21... Line 21...
21
	private static MyUiBinder uiBinder = GWT.create(MyUiBinder.class);
21
	private static MyUiBinder uiBinder = GWT.create(MyUiBinder.class);
Line 22... Line 22...
22
 
22
 
23
	@UiField
23
	@UiField
Line 24... Line -...
24
	Panel panneauResultats, zoneRecherche;
-
 
25
 
-
 
26
	@UiField
-
 
27
	ListBox listeProtocoles;
24
	Panel panneauResultats, zoneRecherche;
28
 
25
 
29
	// Constructeur
26
	// Constructeur
30
	public MoteurRechercheImageVue() {
27
	public MoteurRechercheImageVue() {
Line 31... Line 28...
31
		initWidget(uiBinder.createAndBindUi(this));
28
		initWidget(uiBinder.createAndBindUi(this));
32
	}
29
	}
33
 
30
 
Line 34... Line -...
34
	public Panel getPanneauChargement() {
-
 
35
		return panneauChargement;
-
 
36
	}
-
 
37
 
-
 
38
	public void setListeProtocoles(ListBox listeProtocoles) {
31
	public Panel getPanneauChargement() {
39
		this.listeProtocoles = listeProtocoles;
32
		return panneauChargement;
40
	}
33
	}
41
 
34
 
Line 42... Line 35...
42
	// Cette méthode est public car appelé dans GestionnaireHistorique
35
	// Cette méthode est public car appelé dans GestionnaireHistorique
43
	public Panel getZoneResultats() {
36
	public Panel getZoneResultats() {
44
		return panneauResultats;
37
		return panneauResultats;
Line 45... Line -...
45
	}
-
 
46
 
-
 
47
	public void setPanneauResultats(Panel panneauResultats) {
-
 
48
		this.panneauResultats = panneauResultats;
-
 
49
	}
-
 
50
 
-
 
51
	public HasChangeHandlers getListeProtocoles() {
-
 
52
		return listeProtocoles;
-
 
53
	}
-
 
54
 
-
 
55
	public void ajouterProtocole(String protocole) {
-
 
56
		listeProtocoles.addItem(protocole);
-
 
57
	}
-
 
58
 
38
	}
59
	public void selectionnerProtocole(int index) {
39
 
60
		listeProtocoles.setSelectedIndex(index);
40
	public void setPanneauResultats(Panel panneauResultats) {
Line 61... Line 41...
61
 
41
		this.panneauResultats = panneauResultats;
62
	}
-
 
63
 
-
 
64
	public HasWidgets getZoneRecherche() {
-
 
65
		return zoneRecherche;
-
 
66
	}
-
 
67
 
-
 
68
	@Override
-
 
69
	public String getNomProtocolSelectionne() {
-
 
70
		return listeProtocoles.getValue(listeProtocoles.getSelectedIndex());
-
 
71
	}
-
 
72
 
42
	}
73
	@Override
43
 
74
	public int getIdProtocoleSelectionne() {
44
	public HasWidgets getZoneRecherche() {
Line 75... Line 45...
75
		return listeProtocoles.getSelectedIndex();
45
		return zoneRecherche;