Subversion Repositories eFlore/Applications.cel

Rev

Rev 2401 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2401 Rev 2553
Line 9... Line 9...
9
import java.util.Vector;
9
import java.util.Vector;
Line 10... Line 10...
10
 
10
 
11
import org.tela_botanica.client.modeles.objets.ChampEtendu;
11
import org.tela_botanica.client.modeles.objets.ChampEtendu;
Line -... Line 12...
-
 
12
import org.tela_botanica.client.modeles.objets.Observation;
12
import org.tela_botanica.client.modeles.objets.Observation;
13
 
13
 
14
import com.google.gwt.dom.client.Element;
14
import com.google.gwt.json.client.JSONArray;
15
import com.google.gwt.json.client.JSONArray;
-
 
16
import com.google.gwt.json.client.JSONObject;
-
 
17
import com.google.gwt.json.client.JSONString;
Line 15... Line 18...
15
import com.google.gwt.json.client.JSONObject;
18
import com.google.gwt.user.client.DOM;
Line 16... Line 19...
16
import com.google.gwt.json.client.JSONString;
19
import com.google.gwt.user.client.ui.RootPanel;
17
 
20
 
Line 418... Line 421...
418
 
421
 
419
	protected static String convertirMotEnChaMot(String s) {
422
	protected static String convertirMotEnChaMot(String s) {
420
		return s.substring(0, 1).toUpperCase() +
423
		return s.substring(0, 1).toUpperCase() +
421
	               s.substring(1).toLowerCase();
424
	               s.substring(1).toLowerCase();
-
 
425
	}
-
 
426
 
-
 
427
	public static void curseurAttente() {
-
 
428
	    RootPanel.getBodyElement().getStyle().setProperty("cursor", "wait");
-
 
429
	}
-
 
430
 
-
 
431
	public static void curseurParDefaut() {
-
 
432
		RootPanel.getBodyElement().getStyle().setProperty("cursor", "default");
-
 
433
	}
422
	}
434