Subversion Repositories eFlore/Applications.del

Rev

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

Rev 652 Rev 677
Line 33... Line 33...
33
		public void nettoyer();
33
		public void nettoyer();
34
		public HasClickHandlers getTriParDateAscendant();
34
		public HasClickHandlers getTriParDateAscendant();
35
		public HasClickHandlers getTriParDateDescendant();
35
		public HasClickHandlers getTriParDateDescendant();
36
		public void afficherElementsAucunResultatTrouve();
36
		public void afficherElementsAucunResultatTrouve();
37
		public void afficherElementsResultatsTrouves();	
37
		public void afficherElementsResultatsTrouves();	
38
		public Label getLabelDate();
38
		public HasClickHandlers getLabelDate();
39
		public void masquerDateAscendant();
39
		public void masquerDateAscendant();
40
		public void masquerDateDescendant();
40
		public void masquerDateDescendant();
41
		public void afficherDateAscendant();
41
		public void afficherDateAscendant();
42
		public void afficherDateDescendant();
42
		public void afficherDateDescendant();
43
	}
43
	}
Line 44... Line 44...
44
 
44
 
45
	private Vue vue;
45
	private Vue vue;
Line 46... Line 46...
46
	private ModeTri triCourantDate = ModeTri.TRI_ASCENDANT;
46
	private ModeTri triCourantDate = ModeTri.TRI_DESCENDANT;
47
	
47
	
48
	public ResultatsRechercheObservationsPresenteur(ObservationService serviceObs, Vue vue) {
48
	public ResultatsRechercheObservationsPresenteur(ObservationService serviceObs, Vue vue) {
49
		this.vue = vue;
49
		this.vue = vue;
50
		this.serviceObs = serviceObs;
50
		this.serviceObs = serviceObs;
51
		vue.masquerDateAscendant();
51
		vue.masquerDateAscendant();
Line 52... Line 52...
52
		vue.masquerDateDescendant();
52
		//vue.masquerDateDescendant();
53
	}
53
	}
54
 
54