Files
DEV/DEV.3.1/TP/TP2/Galerie.1/GModel.java
EmmanuelTiamzon f7de13bc2a version copilot
2025-09-26 14:57:00 +02:00

23 lines
514 B
Java

import javax.swing.*;
public class GModel {
private ImageIcon[] imgCarousel;
private int index;
public GModel(ImageIcon[] imgCarousel) {
this.imgCarousel = imgCarousel;
this.index = 0;
}
public ImageIcon getImageActuel() {
return this.imgCarousel[this.index];
}
public void imageSuivante() {
this.index = (this.index + 1) % imgCarousel.length;
}
public void imagePrecedente() {
this.index = (this.index - 1 + this.imgCarousel.length) % imgCarousel.length;
}
}