01
02
03
04
05
package composite.four;
public interface ExprBuilder {
  Expr toExpr();
  void add(Expr e);
}