- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
//говнокод из ЮАР)
public static boolean isValid(Object object){
if(object == null){
return false;
}
try{
List l = (List)object;
return !l.isEmpty();
}
catch (ClassCastException ex){
String string = object.toString();
return !(("").equals(string.trim()));
}
}
guest 24.07.2015 14:21 # 0
dematomCom 17.08.2015 00:20 # −1