cours0708/P51/apache-tomcat-6.0.14/webapps/ROOT/Matdelavegas/Java/ArticlePanier.java~

28 lines
370 B
Java
Raw Normal View History

2008-11-25 21:11:16 +00:00
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;
}
}