Details
-
Improvement
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
None
-
None
Description
Sometimes having boolean true/false in an expression are needed. See discussion:
Example from Øyvind Harboe:
Expression e=ExpressionFactory.expTrue();
if (xxx)
{
e=e.andExp(....);
}
if (yyy)
{
e=e.andExp(....);
}
return e;