Subversion Repositories eFlore/Applications.coel

Rev

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

Rev Author Line No. Line
949 jpm 1
package org.tela_botanica.client.modeles.collection;
808 jpm 2
 
3
import org.tela_botanica.client.util.UtilString;
4
 
5
import com.extjs.gxt.ui.client.data.BaseModelData;
6
 
7
public class UniteRangement extends BaseModelData {
8
 
9
	private static final long serialVersionUID = 394843761854792528L;
10
	public static final String COMPTE_EXACT = "E";
11
	public static final String COMPTE_APPROXIMATIF = "A";
12
 
13
	public UniteRangement() {
14
 
15
	}
16
 
948 jpm 17
	public UniteRangement(String id, String type, int nombre, String precision, String format) {
18
		setId(id);
808 jpm 19
		setType(type);
20
		setNombre(nombre);
21
		setPrecision(precision);
22
		setFormat(format);
831 jpm 23
		setTypeAutre(false);
808 jpm 24
	}
25
 
948 jpm 26
	public String getId() {
27
		return renvoyerValeurCorrecte((String) get("id"));
28
	}
29
	public void setId(String id) {
30
		set("id", id);
31
	}
32
 
808 jpm 33
	public String getType() {
34
		return renvoyerValeurCorrecte((String) get("type"));
35
	}
36
	public void setType(String type) {
37
		set("type", type);
38
	}
39
 
948 jpm 40
	public double getNombre() {
41
		if (get("nombre") == null) {
42
			return new Double(0);
43
		}
808 jpm 44
		return get("nombre");
45
	}
948 jpm 46
	public void setNombre(double nombre) {
808 jpm 47
		set("nombre", nombre);
48
	}
49
 
50
	public String getPrecision() {
51
		return renvoyerValeurCorrecte((String) get("precision"));
52
	}
53
	public void setPrecision(String precision) {
54
		set("precision", precision);
55
	}
56
 
57
	public String getFormat() {
58
		return renvoyerValeurCorrecte((String) get("format"));
59
	}
60
	public void setFormat(String format) {
61
		set("format", format);
62
	}
63
 
831 jpm 64
	public boolean getTypeAutre() {
65
		return get("type_autre");
66
	}
67
	public void setTypeAutre(boolean bool) {
68
		set("type_autre", bool);
69
	}
70
 
808 jpm 71
	private String renvoyerValeurCorrecte(String valeur) {
72
		String valeurCorrecte = "";
73
		if (!UtilString.isEmpty(valeur)) {
74
			valeurCorrecte = valeur;
75
		}
76
		return valeurCorrecte;
77
	}
78
}