cours0708/workspace/webapps/Matdelavegas/Java/ArticlePanier.java~
2008-11-25 22:11:16 +01:00

28 lines
370 B
Java

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;
}
}