1 2 package org.objectweb.speedo.pobjects.ref.cursor; 3 4 public class MesDispo { 5 6 private MesProduits produit; 7 private long oid; 8 private String entrepot; 9 private double quantite; 10 11 public String toString(){ 12 return oid+"::"+entrepot+"::"+quantite; 13 } 14 15 18 public String getEntrepot() { 19 return entrepot; 20 } 21 24 public void setEntrepot(String entrepot) { 25 this.entrepot = entrepot; 26 } 27 30 public long getOid() { 31 return oid; 32 } 33 36 public void setOid(long oid) { 37 this.oid = oid; 38 } 39 42 public MesProduits getProduit() { 43 return produit; 44 } 45 48 public void setProduit(MesProduits produit) { 49 this.produit = produit; 50 } 51 54 public double getQuantite() { 55 return quantite; 56 } 57 60 public void setQuantite(double quantite) { 61 this.quantite = quantite; 62 } 63 } 64 | Popular Tags |