Subversion Repositories eFlore/Applications.del

Rev

Rev 210 | Rev 348 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 210 Rev 232
Line 5... Line 5...
5
import java.util.List;
5
import java.util.List;
Line 6... Line 6...
6
 
6
 
Line 7... Line 7...
7
public class Observation implements Serializable {
7
public class Observation implements Serializable {
8
 
-
 
9
	private static final long serialVersionUID = 840032625524143547L;
-
 
10
 
-
 
11
	private String auteur;
-
 
12
 
-
 
13
	private String species;
-
 
14
 
-
 
15
	private String nomRetenu;
-
 
16
 
-
 
17
	private String famille;
-
 
18
 
-
 
19
	private String localite;
-
 
20
 
-
 
21
	private String date;
8
 
Line 22... Line 9...
22
 
9
	private static final long serialVersionUID = 840032625524143547L;
23
	private String numNomenclatural;
-
 
24
 
10
	private String auteur, species, nomRetenu, famille, localite, date, numNomenclatural;
25
	private List<String> motsClefs = new ArrayList<String>();
-
 
26
 
11
 
Line 27... Line 12...
27
	private List<PropositionDetermination> propositionsDetermination = new ArrayList<PropositionDetermination>();
12
	private List<String> motsClefs = new ArrayList<String>();
28
 
13
	private List<PropositionDetermination> propositionsDetermination = new ArrayList<PropositionDetermination>();
29
	private List<Image> images = new ArrayList<Image>();
14
	private List<Image> images = new ArrayList<Image>();