Subversion Repositories eFlore/Archives.cel-v1

Rev

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

Rev 13 Rev 27
Line 1... Line 1...
1
package org.tela_botanica.client;
1
package org.tela_botanica.client;
Line 2... Line 2...
2
 
2
 
Line -... Line 3...
-
 
3
public class InventoryItem {
Line 3... Line 4...
3
public class InventoryItem {
4
 
4
 
5
	// TODO : Singleton ?
5
	
6
	
6
	private String name=null;
7
	private String name=null;
7
	private String nomenclaturalNumber=null;
8
	private String nomenclaturalNumber=null;
8
	private String location=null;
9
	private String location=null;
9
	private String location_id=null;
10
	private String location_id=null;
10
	private String date=null;
11
	private String date=null;
Line -... Line 12...
-
 
12
	private String milieu=null;
-
 
13
	private String comment=null;
-
 
14
	private String ordre=null;
-
 
15
 
-
 
16
 
-
 
17
	
-
 
18
//	 Constructeur  
-
 
19
	
-
 
20
	
-
 
21
	// Constructeur sur saisie 
-
 
22
	
Line -... Line 23...
-
 
23
	public InventoryItem() {
-
 
24
 
11
	private String complementlocation=null;
25
	}
Line 12... Line 26...
12
	private String comment=null;
26
 
13
	private String ordre=null;
27
	
Line 28... Line 42...
28
			 this.location=location;
42
			 this.location=location;
29
		}
43
		}
Line 30... Line 44...
30
		 
44
		 
31
		this.location_id=location_id;
45
		this.location_id=location_id;
32
		this.date=date;
46
		this.date=date;
33
		this.complementlocation=complementlocation;
47
		this.milieu=milieu;
34
		this.comment=comment;
48
		this.comment=comment;
Line 35... Line 49...
35
		this.ordre=ordre;
49
		this.ordre=ordre;
Line -... Line 50...
-
 
50
		
36
		
51
	}
37
	}
52
 
38
 
53
 
Line 60... Line 75...
60
	public String getComment() {
75
	public String getComment() {
61
		return comment;
76
		return comment;
62
	}
77
	}
Line 63... Line 78...
63
 
78
 
64
 
79
 
65
	public String getComplementlocation() {
80
	public String getMilieu() {
Line 66... Line 81...
66
		return complementlocation;
81
		return milieu;
67
	}
82
	}