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

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

maj eccad V3.2

  • Property svn:executable set to *
File size: 1.1 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        /**
13         *
14         */
15        private static final long serialVersionUID = 1L;
16
17        private ConcerneId id;
18
19        private References references;
20
21        private Produit produit;
22
23        // Constructors
24       
25        /** default constructor */
26        public Concerne() {
27        }
28
29        /** full constructor */
30        public Concerne(ConcerneId id, References references, Produit produit) {
31                this.id = id;
32                this.references = references;
33                this.produit = produit;
34        }
35
36        public String toString() {
37                return references.toString();           
38        }
39       
40        // Property accessors
41        public ConcerneId getId() {
42                return this.id;
43        }
44
45        public void setId(ConcerneId id) {
46                this.id = id;
47        }
48
49        public References getReferences() {
50                return this.references;
51        }
52
53        public void setReferences(References references) {
54                this.references = references;
55        }
56
57        public Produit getProduit() {
58                return this.produit;
59        }
60
61        public void setProduit(Produit produit) {
62                this.produit = produit;
63        }
64
65}
Note: See TracBrowser for help on using the repository browser.