INTERNAL
Return a TopLink expression by 'AND'ing the expressions from the left and right nodes
// Get the left expression
Expression whereClause = getLeft().generateExpression(context);
// Or it with whatever the right expression is
whereClause = whereClause.and(getRight().generateExpression(context));
// and return the expression...
return whereClause;