Subversion Repositories eFlore/Archives.cel-v1

Rev

Rev 13 | Rev 28 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
12 ddelon 1
package org.tela_botanica.client;
2
 
3
public class InventoryItem {
4
 
27 ddelon 5
	// TODO : Singleton ?
12 ddelon 6
 
7
	private String name=null;
8
	private String nomenclaturalNumber=null;
9
	private String location=null;
10
	private String location_id=null;
11
	private String date=null;
27 ddelon 12
	private String milieu=null;
12 ddelon 13
	private String comment=null;
13 ddelon 14
	private String ordre=null;
12 ddelon 15
 
27 ddelon 16
 
12 ddelon 17
 
27 ddelon 18
//	 Constructeur
19
 
20
 
21
	// Constructeur sur saisie
22
 
23
	public InventoryItem() {
12 ddelon 24
 
27 ddelon 25
	}
26
 
27
 
28
	// Alimentation contenu depuis saisie
29
 
30
	public void setContent(String name,String nomenclaturalNumber, String location, String location_id, String date, String milieu, String comment,String ordre) {
31
 
12 ddelon 32
 
33
		this.name=name;
34
		this.nomenclaturalNumber=nomenclaturalNumber;
35
 
36
	 // Suppresion indication departementale (on pourrait faire mieux !!)
37
		int pos=location.indexOf(" (" );
38
	    if (pos>=0) {
39
	    	this.location=location.substring(0,pos);
40
	    }
41
		else {
42
			 this.location=location;
43
		}
44
 
45
		this.location_id=location_id;
46
		this.date=date;
27 ddelon 47
		this.milieu=milieu;
12 ddelon 48
		this.comment=comment;
13 ddelon 49
		this.ordre=ordre;
12 ddelon 50
 
51
	}
52
 
53
 
27 ddelon 54
 
12 ddelon 55
	public String getLocation() {
56
		return location;
57
	}
58
 
59
 
60
	public String getLocation_id() {
61
		return location_id;
62
	}
63
 
64
 
65
	public String getName() {
66
		return name;
67
	}
68
 
69
 
70
	public String getNomenclaturalNumber() {
71
		return nomenclaturalNumber;
72
	}
73
 
74
 
75
	public String getComment() {
76
		return comment;
77
	}
78
 
79
 
27 ddelon 80
	public String getMilieu() {
81
		return milieu;
12 ddelon 82
	}
83
 
84
 
85
	public String getDate() {
86
		return date;
87
	}
13 ddelon 88
 
89
 
90
	public String getOrdre() {
91
		return ordre;
92
	}
12 ddelon 93
 
94
}