Subversion Repositories eFlore/Applications.del

Rev

Rev 1165 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1062 benjamin 1
package org.tela_botanica.del.client.utils;
2
 
3
public class StringUtils {
4
 
5
	public static boolean checkStringNotNull(String s){
6
		if(s!=null&&!s.equals("")){
7
			return true;
8
		}
9
		return false;
10
	}
11
 
12
}