01: package org.objectweb.speedo.pobjects.ref.cursor;
02:
03: public class MesDispo {
04:
05: private MesProduits produit;
06: private long oid;
07: private String entrepot;
08: private double quantite;
09:
10: public String toString() {
11: return oid + "::" + entrepot + "::" + quantite;
12: }
13:
14: /**
15: * @return Returns the entrepot.
16: */
17: public String getEntrepot() {
18: return entrepot;
19: }
20:
21: /**
22: * @param entrepot The entrepot to set.
23: */
24: public void setEntrepot(String entrepot) {
25: this .entrepot = entrepot;
26: }
27:
28: /**
29: * @return Returns the oid.
30: */
31: public long getOid() {
32: return oid;
33: }
34:
35: /**
36: * @param oid The oid to set.
37: */
38: public void setOid(long oid) {
39: this .oid = oid;
40: }
41:
42: /**
43: * @return Returns the produit.
44: */
45: public MesProduits getProduit() {
46: return produit;
47: }
48:
49: /**
50: * @param produit The produit to set.
51: */
52: public void setProduit(MesProduits produit) {
53: this .produit = produit;
54: }
55:
56: /**
57: * @return Returns the quantite.
58: */
59: public double getQuantite() {
60: return quantite;
61: }
62:
63: /**
64: * @param quantite The quantite to set.
65: */
66: public void setQuantite(double quantite) {
67: this.quantite = quantite;
68: }
69: }
|