source: ether_eccad/trunk/ECCAD_INTERFACE/WEB-INF/src/org/medias/eccad/modele/LegendText.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: 383 bytes
Line 
1package org.medias.eccad.modele;
2
3public class LegendText {
4        private String legende;
5        private int identifiant;
6       
7        public int getIdentifiant() {
8                return identifiant;
9        }
10       
11        public void setIdentifiant(int identifiant) {
12                this.identifiant = identifiant;
13        }
14       
15        public String getLegende() {
16                return legende;
17        }
18       
19        public void setLegende(String legende) {
20                this.legende = legende;
21        }
22}
Note: See TracBrowser for help on using the repository browser.