Subversion Repositories eFlore/Applications.del

Rev

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

Rev 390 Rev 459
Line 4... Line 4...
4
import java.util.List;
4
import java.util.List;
Line 5... Line 5...
5
 
5
 
6
import com.google.gwt.core.client.GWT;
6
import com.google.gwt.core.client.GWT;
7
import com.google.gwt.uibinder.client.UiBinder;
7
import com.google.gwt.uibinder.client.UiBinder;
8
import com.google.gwt.uibinder.client.UiField;
8
import com.google.gwt.uibinder.client.UiField;
9
import com.google.gwt.user.client.Window;
9
import com.google.gwt.user.client.ui.Button;
10
import com.google.gwt.user.client.ui.Composite;
10
import com.google.gwt.user.client.ui.Composite;
11
import com.google.gwt.user.client.ui.HTMLPanel;
11
import com.google.gwt.user.client.ui.HTMLPanel;
12
import com.google.gwt.user.client.ui.Panel;
12
import com.google.gwt.user.client.ui.Panel;
Line 30... Line 30...
30
	@UiField
30
	@UiField
31
	Panel panneauPagination, panneauPaginationHaut;
31
	Panel panneauPagination, panneauPaginationHaut;
Line 32... Line 32...
32
 
32
 
33
	@UiField
33
	@UiField
-
 
34
	HTMLPanel imageTable;
-
 
35
	
-
 
36
	@UiField
Line 34... Line 37...
34
	HTMLPanel imageTable;
37
	Button triParNbVotesAscendant, triParNbVotesDescendant, triParDateAscendant, triParDateDescendant;
35
 
38
 
36
	// Constructeur
39
	// Constructeur
37
	public ResultatRechercheImageVue() {
40
	public ResultatRechercheImageVue() {
Line 106... Line 109...
106
	}
109
	}
Line 107... Line 110...
107
 
110
 
108
	public List<Panel> getPanneauxImages() {
111
	public List<Panel> getPanneauxImages() {
109
		return panneauxImages;
112
		return panneauxImages;
-
 
113
	}
-
 
114
	
-
 
115
	public Button getTriParNbVotesAscendant() {
-
 
116
		return triParNbVotesAscendant;
-
 
117
	}
-
 
118
 
-
 
119
	public Button getTriParNbVotesDescendant() {
-
 
120
		return triParNbVotesDescendant;
-
 
121
	}
-
 
122
 
-
 
123
	public Button getTriParDateAscendant() {
-
 
124
		return triParDateAscendant;
-
 
125
	}
-
 
126
 
-
 
127
	public Button getTriParDateDescendant() {
-
 
128
		return triParDateDescendant;
Line 110... Line 129...
110
	}
129
	}