Subversion Repositories eFlore/Applications.del

Rev

Rev 2067 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2067 aurelien 1
package org.tela_botanica.del.client.modeles;
2
 
3
public class EvenementObs {
4
 
5
	public String type = "";
6
	public String infosComplementaires = "";
7
 
8
	public EvenementObs(String type, String infosComplementaires) {
9
		this.type = type;
10
		this.infosComplementaires = infosComplementaires;
11
	}
12
 
13
	public String getType() {
14
		return type;
15
	}
16
 
17
	public void setType(String type) {
18
		this.type = type;
19
	}
20
 
21
	public String getInfosComplementaires() {
22
		return infosComplementaires;
23
	}
24
 
25
	public void setInfosComplementaires(String infosComplementaires) {
26
		this.infosComplementaires = infosComplementaires;
27
	}
28
}