Subversion Repositories eFlore/Applications.coel

Rev

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

Rev 1468 Rev 1918
Line 18... Line 18...
18
			return "";
18
			return "";
19
		}
19
		}
20
		return inputStr.substring(0,1).toUpperCase() + inputStr.substring(1, inputStr.length());
20
		return inputStr.substring(0,1).toUpperCase() + inputStr.substring(1, inputStr.length());
21
	}
21
	}
Line -... Line 22...
-
 
22
	
-
 
23
	public static String mettrePremiereLettreEnMajuscule(String str) {
-
 
24
		return str.substring(0, 1).toUpperCase() + str.substring(1);
-
 
25
	}
22
	
26
	
23
	public static boolean isEmpty(String chaine)	{
27
	public static boolean isEmpty(String chaine)	{
24
		boolean etreVide = false;
28
		boolean etreVide = false;
25
		if (chaine == null || chaine.equals("") || chaine.equals("0000-00-00") || chaine.equals("0000-00-00 00:00:00")) {
29
		if (chaine == null || chaine.equals("") || chaine.equals("0000-00-00") || chaine.equals("0000-00-00 00:00:00")) {
26
			etreVide = true;
30
			etreVide = true;