public void visit(WhenClause entity) {
   wGetVisitor1().visit(entity.getCondition());
   wGetVisitor1().visit(entity.getResult());
 }
예제 #2
0
 public void visit(WhenClause whenClause) throws Exception {
   if (whenClause == null) return;
   if (whenClause.getWhenExpression() != null) whenClause.getWhenExpression().accept(this);
   if (whenClause.getThenExpression() != null) whenClause.getThenExpression().accept(this);
 }