Package lupos.gui.operatorgraph.visualeditor.queryeditor.operators

Examples of lupos.gui.operatorgraph.visualeditor.queryeditor.operators.Union


  public Object visit(final ASTGraphConstraint node, final Object data) {
    return visitChildren(node, data);
  }

  public Object visit(final ASTUnionConstraint node, final Object data) {
    final Union unionOp = new Union();

    Operator testOP = (Operator) node.jjtGetChild(0).jjtAccept(this, data);

    if (testOP != null)
      unionOp.addSucceedingOperator(new OperatorIDTuple<Operator>(testOP, 0));

    testOP = (Operator) node.jjtGetChild(1).jjtAccept(this, data);

    if (testOP != null)
      unionOp.addSucceedingOperator(new OperatorIDTuple<Operator>(testOP, 1));

    return unionOp;
  }
View Full Code Here

TOP

Related Classes of lupos.gui.operatorgraph.visualeditor.queryeditor.operators.Union

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.