Subversion Repositories eFlore/Archives.cel-v2

Rev

Rev 12 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
4 aperonnet 1
package org.tela_botanica.client.modeles;
2
 
3
public class ImageCarnet {
4
 
5
	private String url = null ;
6
	private int numero = 0 ;
7
	private String nom = null ;
8
 
9
	public ImageCarnet(String url,int numero,String nom)
10
	{
11
		this.url = url ;
12
		this.numero = numero ;
13
		this.nom = nom ;
14
	}
15
 
16
	public String getUrl() {
17
		return url;
18
	}
19
 
20
	public int getNumero() {
21
		return numero;
22
	}
23
 
24
	public String getNom() {
25
		return nom;
26
	}
27
 
28
 
29
}