source: ether_eccad/trunk/ECCAD_INTERFACE/WEB-INF/src/org/medias/eccad/persistance/hibernate/domaine/Concerne.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 * Concerne generated by hbm2java
7 */
8public class Concerne implements java.io.Serializable {
9
10        // Fields   
11
12        private ConcerneId id;
13
14        private References references;
15
16        private Produit produit;
17
18        // Constructors
19       
20        /** default constructor */
21        public Concerne() {
22        }
23
24        /** full constructor */
25        public Concerne(ConcerneId id, References references, Produit produit) {
26                this.id = id;
27                this.references = references;
28                this.produit = produit;
29        }
30
31        public String toString() {
32                return references.toString();           
33        }
34       
35        // Property accessors
36        public ConcerneId getId() {
37                return this.id;
38        }
39
40        public void setId(ConcerneId id) {
41                this.id = id;
42        }
43
44        public References getReferences() {
45                return this.references;
46        }
47
48        public void setReferences(References references) {
49                this.references = references;
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.