Subversion Repositories eFlore/Applications.del

Rev

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

Rev 466 Rev 474
Line 45... Line 45...
45
	}
45
	}
Line 46... Line 46...
46
 
46
 
Line 47... Line 47...
47
	private String assemblerChaineRequete(InformationsRecherche infos, int debut, int fin) {
47
	private String assemblerChaineRequete(InformationsRecherche infos, int debut, int fin) {
48
 
-
 
49
		String chaineRequete = "?debut=" + debut + "&limite=" + (fin - debut);
48
 
50
		if (infos != null && infos.getTaxon() != null && !infos.getTaxon().trim().isEmpty()) {
-
 
51
			chaineRequete += "nom_taxon=" + infos.getTaxon() + chaineRequete;
-
 
52
		}
-
 
53
		
-
 
54
		if(infos != null && infos.getTriParDate() != null) {
-
 
Line 55... Line 49...
55
			chaineRequete += "&tri=date_observation&ordre="+infos.getTriParDate().toString();
49
		String chaineRequete = "?debut=" + debut + "&limite=" + (fin - debut);
56
		}
50
		chaineRequete+= infos.versChaineRequete();
57
 
51