source: ether_eccad/trunk/ECCAD_INTERFACE/WEB-INF/src/org/medias/eccad/modele/Visualisation.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: 591 bytes
Line 
1package org.medias.eccad.modele;
2
3
4public class Visualisation {
5        public String page_jsp;
6        public String traducteur;
7       
8        public Visualisation() {
9                page_jsp = "";
10                traducteur ="";
11        }
12       
13        public Visualisation(String page_jsp, String traducteur) {
14                super();
15                this.page_jsp = page_jsp;
16                this.traducteur = traducteur;
17        }
18       
19        public String getPage_jsp() {
20                return page_jsp;
21        }
22        public void setPage_jsp(String page_jsp) {
23                this.page_jsp = page_jsp;
24        }
25        public String getTraducteur() {
26                return traducteur;
27        }
28        public void setTraducteur(String traducteur) {
29                this.traducteur = traducteur;
30        }
31
32}
Note: See TracBrowser for help on using the repository browser.