Subversion Repositories eFlore/Applications.del

Rev

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

Rev 564 Rev 592
Line 26... Line 26...
26
 
26
 
27
	@UiField
27
	@UiField
Line 28... Line 28...
28
	Button triParDateAscendant, triParDateDescendant;
28
	Button triParDateAscendant, triParDateDescendant;
29
 
29
 
Line 30... Line 30...
30
	@UiField
30
	@UiField
31
	Label aucunResultat;
31
	Label aucunResultat, labelDate;
32
 
32
 
33
	// Constructeur de la vue
33
	// Constructeur de la vue
Line 89... Line 89...
89
	}
89
	}
Line 90... Line 90...
90
 
90
 
91
	public Button getTriParDateDescendant() {
91
	public Button getTriParDateDescendant() {
92
		return triParDateDescendant;
92
		return triParDateDescendant;
-
 
93
	}
-
 
94
	
-
 
95
	@Override
-
 
96
	public Label getLabelDate() {
-
 
97
		return labelDate;
-
 
98
	}
-
 
99
	
-
 
100
	@Override
-
 
101
	public void masquerDateAscendant() {
-
 
102
		triParDateAscendant.setVisible(false);
-
 
103
	}
-
 
104
	
-
 
105
	@Override
-
 
106
	public void masquerDateDescendant() {
-
 
107
		triParDateDescendant.setVisible(false);
-
 
108
	}
-
 
109
	
-
 
110
	@Override
-
 
111
	public void afficherDateAscendant() {
-
 
112
		triParDateAscendant.setVisible(true);
-
 
113
	}
-
 
114
	
-
 
115
	@Override
-
 
116
	public void afficherDateDescendant() {
-
 
117
		triParDateDescendant.setVisible(true);
93
	}
118
	}