Package lupos.rif.model

Examples of lupos.rif.model.ExistExpression


        disj.addExpr((IExpression) node.accept(this, disj));
      return disj;
    case 2:
      final List<INode> existINodes = (List<INode>) n.f0.choice.accept(
          this, argu);
      final ExistExpression exists = new ExistExpression();
      exists.setParent(argu);
      for (final INode node : (List<INode>) existINodes.get(1).accept(
          this, exists))
        exists.addVariable((RuleVariable) node.accept(this, exists));
      exists.expr = (IExpression) existINodes.get(3).accept(this, exists);
      return exists;
    case 3:
      return n.f0.choice.accept(this, argu);
    default:
View Full Code Here

TOP

Related Classes of lupos.rif.model.ExistExpression

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.