Subversion Repositories eFlore/Applications.coel

Rev

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

Rev 974 Rev 1042
Line 31... Line 31...
31
	public static final String SEPARATEUR_TYPE_VALEUR = "##";
31
	public static final String SEPARATEUR_TYPE_VALEUR = "##";
32
	public static final String SEPARATEUR_VALEURS = ";;";
32
	public static final String SEPARATEUR_VALEURS = ";;";
33
	public static final String SEPARATEUR_DONNEES = "||";
33
	public static final String SEPARATEUR_DONNEES = "||";
34
	public static final String ETAT_AJOUTE = "A";
34
	public static final String ETAT_AJOUTE = "A";
35
	public static final Object ETAT_MODIFIE = "M";
35
	public static final Object ETAT_MODIFIE = "M";
-
 
36
	public static final String VALEUR_NULL = "NC";
Line 36... Line 37...
36
	
37
	
Line 37... Line 38...
37
	protected abstract String getPrefixe();
38
	protected abstract String getPrefixe();
38
	
39
	
Line 84... Line 85...
84
	 * 
85
	 * 
85
	 * @param cle
86
	 * @param cle
86
	 * @return la valeur associée à la clé
87
	 * @return la valeur associée à la clé
87
	 */
88
	 */
88
	protected String renvoyerValeurCorrecte(String cle) {
89
	protected String renvoyerValeurCorrecte(String cle) {
-
 
90
		
89
		String sortie = "";
91
		String sortie = "";
90
		if (this.get(cle) != null) {
92
		if (this.get(cle) != null) {
91
			String valeur = ""+this.get(cle);
93
			String valeur = ""+this.get(cle);
92
			if (! valeur.equals("null")) {
94
			if (! valeur.equals("null")) {
93
				char nullChar = '\u0000';
95
				char nullChar = '\u0000';