Computers are good at following instructions, but not at reading your mind
// check for empty valueDo you see, why I like to be in this profession and what I hate about it!
static boolean isEmpty(String value) {
Boolean isEmpty = new Boolean(false);
if ((value == null) || (value.length() == 0))
isEmpty = true;
return isEmpty.booleanValue();
}
:-)