Subversion Repositories eFlore/Applications.cel

Rev

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

Rev 1313 Rev 2627
Line 1... Line 1...
1
package org.tela_botanica.client.vues.observation.filtres;
1
package org.tela_botanica.client.vues.observation.filtres;
Line -... Line 2...
-
 
2
 
2
 
3
import org.tela_botanica.client.i18n.Msg;
3
import org.tela_botanica.client.interfaces.Filtrable;
4
import org.tela_botanica.client.interfaces.Filtrable;
Line 4... Line 5...
4
import org.tela_botanica.client.observation.ObservationMediateur;
5
import org.tela_botanica.client.observation.ObservationMediateur;
5
 
6
 
Line 14... Line 15...
14
 
15
 
Line 15... Line 16...
15
	private ObservationMediateur oMediateur = null;
16
	private ObservationMediateur oMediateur = null;
Line 16... Line 17...
16
	
17
	
Line 17... Line 18...
17
	private TextField champRecherche = null;
18
	private TextField champRecherche = null;
Line 18... Line 19...
18
	
19
	
Line 30... Line 31...
30
	public RechercheLibreVue(ObservationMediateur om) {
31
	public RechercheLibreVue(ObservationMediateur om) {
31
		super(titrePanneau);
32
		super(titrePanneau);
32
		oMediateur = om;
33
		oMediateur = om;
33
		champRecherche = new TextField();
34
		champRecherche = new TextField();
34
		champRecherche.setWidth("90%");
35
		champRecherche.setWidth("90%");
35
		boutonRechercher = new Button("Rechercher");
36
		boutonRechercher = new Button(Msg.get("rechercher"));
Line 36... Line 37...
36
		
37
		
Line 37... Line 38...
37
		boutonRechercher.addListener(new ButtonListenerAdapter() {
38
		boutonRechercher.addListener(new ButtonListenerAdapter() {
38
 
39
 
Line 70... Line 71...
70
	}
71
	}
Line 71... Line 72...
71
 
72
 
72
 
73
 
73
	@Override
74
	@Override
74
	public String renvoyerNomFiltre() {
75
	public String renvoyerNomFiltre() {
Line 75... Line 76...
75
		return "Recherche libre";
76
		return Msg.get("recherche-libre");
76
	}
77
	}