package articles; public class ArticlePanier { private String ref = ""; private int quantite = 0; public String getRef() { return this.ref; } public void setRef(String ref) { this.ref = ref; } public int getQuantite() { return this.quantite; } public void setQuantite(int quantite) { this.quantite = quantite; } }