source: ether_eccad/trunk/ECCAD_INTERFACE/WEB-INF/src/org/medias/eccad/persistance/hibernate/domaine/Fournit.java @ 68

Last change on this file since 68 was 68, checked in by cbipsl, 14 years ago

commit v1 eccad

  • Property svn:executable set to *
File size: 1.0 KB
Line 
1package org.medias.eccad.persistance.hibernate.domaine;
2
3// Generated 1 Juin 2007 15:03:29 by Hibernate Tools 3.2.0.beta7
4
5/**
6 * Fournit generated by hbm2java
7 */
8public class Fournit implements java.io.Serializable {
9
10        // Fields   
11
12        private FournitId id;
13
14        private Organisme organisme;
15
16        private Produit produit;
17
18        // Constructors
19
20        /** default constructor */
21        public Fournit() {
22        }
23
24        /** full constructor */
25        public Fournit(FournitId id, Organisme organisme, Produit produit) {
26                this.id = id;
27                this.organisme = organisme;
28                this.produit = produit;
29        }
30       
31        public String toString() {
32                return organisme.toString();
33        }
34       
35        // Property accessors
36        public FournitId getId() {
37                return this.id;
38        }
39
40        public void setId(FournitId id) {
41                this.id = id;
42        }
43
44        public Organisme getOrganisme() {
45                return this.organisme;
46        }
47
48        public void setOrganisme(Organisme organisme) {
49                this.organisme = organisme;
50        }
51
52        public Produit getProduit() {
53                return this.produit;
54        }
55
56        public void setProduit(Produit produit) {
57                this.produit = produit;
58        }
59
60}
Note: See TracBrowser for help on using the repository browser.