1 6 package tests.jfun.parsec.mssql; 7 8 13 public final class BoolWhenThen { 14 private final BoolExpression when; 15 private final Expression then; 16 17 21 public BoolWhenThen(final BoolExpression when, final Expression then) { 22 this.when = when; 23 this.then = then; 24 } 25 26 29 public Expression getThen() { 30 return then; 31 } 32 35 public BoolExpression getWhen() { 36 return when; 37 } 38 } 39 | Popular Tags |