KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > speedo > pobjects > ref > cursor > MesDispo


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 JavaDoc entrepot;
9     private double quantite;
10
11     public String JavaDoc toString(){
12         return oid+"::"+entrepot+"::"+quantite;
13     }
14     
15     /**
16      * @return Returns the entrepot.
17      */

18     public String JavaDoc getEntrepot() {
19         return entrepot;
20     }
21     /**
22      * @param entrepot The entrepot to set.
23      */

24     public void setEntrepot(String JavaDoc entrepot) {
25         this.entrepot = entrepot;
26     }
27     /**
28      * @return Returns the oid.
29      */

30     public long getOid() {
31         return oid;
32     }
33     /**
34      * @param oid The oid to set.
35      */

36     public void setOid(long oid) {
37         this.oid = oid;
38     }
39     /**
40      * @return Returns the produit.
41      */

42     public MesProduits getProduit() {
43         return produit;
44     }
45     /**
46      * @param produit The produit to set.
47      */

48     public void setProduit(MesProduits produit) {
49         this.produit = produit;
50     }
51     /**
52      * @return Returns the quantite.
53      */

54     public double getQuantite() {
55         return quantite;
56     }
57     /**
58      * @param quantite The quantite to set.
59      */

60     public void setQuantite(double quantite) {
61         this.quantite = quantite;
62     }
63 }
64
Popular Tags