Subversion Repositories eFlore/Applications.cel

Rev

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

Rev 2615 Rev 2628
Line 31... Line 31...
31
	public RechercheFiltreTaxonVue(ImageMediateur im) {
31
	public RechercheFiltreTaxonVue(ImageMediateur im) {
32
		super(titrePanneau);
32
		super(titrePanneau);
33
		iMediateur = im;
33
		iMediateur = im;
34
		champRecherche = new TextField();
34
		champRecherche = new TextField();
35
		champRecherche.setWidth("90%");
35
		champRecherche.setWidth("90%");
36
		boutonRechercher = new Button("Rechercher");
36
		boutonRechercher = new Button(Msg.get("rechercher"));
Line 37... Line 37...
37
		
37
		
Line 38... Line 38...
38
		boutonRechercher.addListener(new ButtonListenerAdapter() {
38
		boutonRechercher.addListener(new ButtonListenerAdapter() {
39
 
39
 
Line 71... Line 71...
71
	}
71
	}
Line 72... Line 72...
72
 
72
 
73
 
73
 
74
	@Override
74
	@Override
75
	public String renvoyerNomFiltre() {
75
	public String renvoyerNomFiltre() {
Line 76... Line 76...
76
		return "Recherche Libre";
76
		return Msg.get("recherche-libre");
77
	}
77
	}