source: ether_eccad/trunk/ECCAD_INTERFACE/WEB-INF/src/org/medias/eccad/presentation/bean/emission/ClasseBean.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: 717 bytes
Line 
1package org.medias.eccad.presentation.bean.emission;
2
3public class ClasseBean {
4        private Long id;
5        private String nom;
6        private boolean selected;
7       
8        public ClasseBean() {
9                selected = false;
10        }
11       
12       
13       
14        public ClasseBean(Long identifiant, String nom) {
15                super();
16                this.id = identifiant;
17                this.nom = nom;
18                selected = false;
19        }
20
21
22
23        public String getNom() {
24                return nom;
25        }
26        public void setNom(String nom) {
27                this.nom = nom;
28        }
29
30        public boolean isSelected() {
31                return selected;
32        }
33
34        public boolean getSelected() {
35                return selected;
36        }
37
38        public void setSelected(boolean selected) {
39                this.selected = selected;
40        }
41
42
43
44        public Long getId() {
45                return id;
46        }
47
48
49
50        public void setId(Long id) {
51                this.id = id;
52        }
53       
54       
55       
56}
Note: See TracBrowser for help on using the repository browser.