Subversion Repositories eFlore/Applications.cel

Rev

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

Rev 2806 Rev 2846
Line 1... Line 1...
1
package org.tela_botanica.client.modeles.objets;
1
package org.tela_botanica.client.modeles.objets;
Line 2... Line 2...
2
 
2
 
3
import java.util.ArrayList;
-
 
4
import java.util.HashMap;
-
 
5
import java.util.Iterator;
3
import java.util.ArrayList;
6
import java.util.List;
-
 
Line 7... Line 4...
7
import java.util.Map;
4
import java.util.List;
8
 
-
 
9
import com.google.gwt.i18n.client.Dictionary;
-
 
10
import com.google.gwt.json.client.JSONObject;
-
 
11
import com.google.gwt.json.client.JSONParser;
-
 
12
import com.google.gwt.json.client.JSONValue;
5
 
13
import com.google.gwt.user.client.Window;
-
 
Line 14... Line 6...
14
import com.google.gwt.user.client.Window.Location;
6
import com.google.gwt.i18n.client.Dictionary;
15
import com.sun.org.apache.bcel.internal.generic.RETURN;
7
import com.google.gwt.user.client.Window.Location;
16
 
8
 
17
/**
9
/**
Line 44... Line 36...
44
	
36
	
Line 45... Line 37...
45
	private static String cleGoogleMaps ;
37
	private static String cleGoogleMaps ;
Line 46... Line -...
46
 
-
 
47
	private static String lienEfloreBaseUrl;
-
 
48
	
-
 
49
	private static String refTax;
-
 
50
	
38
 
Line 51... Line 39...
51
	private static String refTaxVersion;
39
	private static String lienEfloreBaseUrl;
Line 52... Line 40...
52
	
40
	
Line 82... Line 70...
82
	
70
	
Line 83... Line 71...
83
	private static String languesDisponibles = "";
71
	private static String languesDisponibles = "";
Line -... Line 72...
-
 
72
	
-
 
73
	private static String chorologieAvertissementCourriel = "";
84
	
74
 
85
	private static String chorologieAvertissementCourriel = "";
75
	private static boolean prod = false;
86
 
76
 
87
	/**
77
	/**
88
	 * Constructeur sans argument
78
	 * Constructeur sans argument
Line 164... Line 154...
164
			langueDefaut = Dictionary.getDictionary("configuration").get("langueDefaut");
154
			langueDefaut = Dictionary.getDictionary("configuration").get("langueDefaut");
Line 165... Line 155...
165
			
155
			
Line 166... Line 156...
166
			languesDisponibles = Dictionary.getDictionary("configuration").get("languesDisponibles");
156
			languesDisponibles = Dictionary.getDictionary("configuration").get("languesDisponibles");
-
 
157
			
-
 
158
			chorologieAvertissementCourriel = Dictionary.getDictionary("configuration").get("chorologieAvertissementCourriel");
Line 167... Line 159...
167
			
159
			
168
			chorologieAvertissementCourriel = Dictionary.getDictionary("configuration").get("chorologieAvertissementCourriel");
160
			prod = Boolean.parseBoolean(Dictionary.getDictionary("configuration").get("prod"));
169
				
161
				
170
			// Pour test, l'activation de l'ajout des champs étendus est activable ou désactivable par 
162
			// Pour test, l'activation de l'ajout des champs étendus est activable ou désactivable par 
Line 339... Line 331...
339
	}
331
	}
Line 340... Line 332...
340
	
332
	
341
	public static String getChorologieAvertissementCourriel() {
333
	public static String getChorologieAvertissementCourriel() {
342
		return chorologieAvertissementCourriel;
334
		return chorologieAvertissementCourriel;
-
 
335
	}
-
 
336
 
-
 
337
	public static boolean isProd() {
-
 
338
		return prod;
343
	}
339
	}