INTERNAL
Return a TopLink expression for this node.
//get the variable name from the DotNode's right attribute
//...WHERE emp.firstName IS EMPTY
String emptyAttributeName = ((AttributeNode)getLeft().getRight()).getAttributeName();
Expression whereClause = getLeft().getLeft().generateExpression(context);
if (notIndicated) {
return whereClause.notEmpty(emptyAttributeName);
} else {
return whereClause.isEmpty(emptyAttributeName);
}