On Jul 19, 2004, at 20:52, McBrayer, Roy wrote:
> Expression e = ExpressionFactory.matchExp("siteNumber",station);
> e.andExp(qual);
> e.andExp(qual2);
Try using the return values from the methods as the next expression:
Expression e = ExpressionFactory.matchExp("siteNumber",station);
e = e.andExp(qual);
e = e.andExp(qual2);
Regards,
- Tore.
This archive was generated by hypermail 2.0.0 : Mon Jul 19 2004 - 15:00:05 EDT