source: ether_eccad/trunk/ECCAD_INTERFACE/WEB-INF/src/org/medias/eccad/modele/CatParametre.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: 471 bytes
RevLine 
[68]1package org.medias.eccad.modele;
2
3public class CatParametre {
4        private int identifiant;
5        private String nom;
6       
7        public CatParametre(int identifiant, String nom) {
8                super();
9                this.identifiant = identifiant;
10                this.nom = nom;
11        }
12       
13        public int getIdentifiant() {
14                return identifiant;
15        }
16        public void setIdentifiant(int identifiant) {
17                this.identifiant = identifiant;
18        }
19        public String getNom() {
20                return nom;
21        }
22        public void setNom(String nom) {
23                this.nom = nom;
24        }
25}
Note: See TracBrowser for help on using the repository browser.