Subversion Repositories eFlore/Applications.del

Rev

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

Rev 378 Rev 379
Line 12... Line 12...
12
import org.tela_botanica.del.client.services.rest.async.ImagesParTaxonCallback;
12
import org.tela_botanica.del.client.services.rest.async.ImagesParTaxonCallback;
13
import org.tela_botanica.del.client.vues.rechercheimages.resultats.images.ImagePresenteur;
13
import org.tela_botanica.del.client.vues.rechercheimages.resultats.images.ImagePresenteur;
14
import org.tela_botanica.del.client.vues.rechercheimages.resultats.images.ImageVue;
14
import org.tela_botanica.del.client.vues.rechercheimages.resultats.images.ImageVue;
Line 15... Line 15...
15
 
15
 
-
 
16
import com.google.gwt.user.client.ui.HasWidgets;
16
import com.google.gwt.user.client.ui.HasWidgets;
17
import com.google.gwt.user.client.ui.IsWidget;
Line 17... Line 18...
17
import com.google.gwt.user.client.ui.Panel;
18
import com.google.gwt.user.client.ui.Panel;
Line -... Line 19...
-
 
19
 
-
 
20
public class ResultatRechercheImagePresenteur {
-
 
21
 
-
 
22
	public abstract interface Vue extends IsWidget {
-
 
23
		public void startChargement();
-
 
24
		public void nettoyer();
-
 
25
		public void afficherPanneauxObservation(List<Panel> panneauxImagesAffichees);
-
 
26
		public void creerPanneauxObservations(int size);
-
 
27
		public void stopChargement();
-
 
28
		public List<Panel> getPanneauxImages();
-
 
29
		public HasWidgets getPanneauPagination();
-
 
30
		public HasWidgets getPanneauPaginationHaut();
18
 
31
		
-
 
32
		
19
public class ResultatRechercheImagePresenteur {
33
	}
20
 
34
			//new ResultatRechercheImageVue();
21
	private final ResultatRechercheImageVue vue = new ResultatRechercheImageVue();
35
	private Vue vue;
Line 22... Line 36...
22
	private List<ImagePresenteur> observationPresenteurs = new ArrayList<ImagePresenteur>();
36
	private List<ImagePresenteur> observationPresenteurs = new ArrayList<ImagePresenteur>();
-
 
37
	private ImageService imageService;
23
	private ImageService imageService;
38
	private PaginationPresenteur paginationHautPresenteur, paginationBasPresenteur;
24
	private PaginationPresenteur paginationHautPresenteur, paginationBasPresenteur;
39
	
Line 25... Line 40...
25
	
40
	public ResultatRechercheImagePresenteur(ImageService imageService, Vue vue) {
26
	public ResultatRechercheImagePresenteur(ImageService imageService) {
41
		this.vue = vue;
27
		this.imageService = imageService;
-
 
28
	}
42
		this.imageService = imageService;
Line 29... Line 43...
29
 
43
	}
30
	public void go(HasWidgets composite) {
44
 
31
		composite.add(vue);
45
	public void go(HasWidgets composite) {