コード例 #1
0
ファイル: TableVisitor.java プロジェクト: pronoydebnath/DDF
 @Override
 public void visit(Concat concat) throws Exception {
   concat.getLeftExpression().accept(this);
   concat.getRightExpression().accept(this);
 }