Subversion Repositories eFlore/Applications.del

Rev

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

Rev Author Line No. Line
1162 aurelien 1
package org.tela_botanica.del.client.modeles;
2
 
3
public class MotCle {
4
 
5
	private String idMotCle;
6
	private String idImage;
7
	private String motCle;
8
 
9
	public MotCle(String idMotCle, String idImage, String motCle) {
10
		super();
11
		this.idMotCle = idMotCle;
12
		this.idImage = idImage;
13
		this.motCle = motCle;
14
	}
15
 
16
	public String getIdMotCle() {
17
		return idMotCle;
18
	}
19
 
20
	public String getIdImage() {
21
		return idImage;
22
	}
23
 
24
	public String getMotCle() {
25
		return motCle;
26
	}
27
}