Search in sources :

Example 1 with NaryExpression

use of org.hl7.elm.r1.NaryExpression in project clinical_quality_language by cqframework.

the class NaryExpressionInvocation method setOperands.

@Override
public void setOperands(Iterable<Expression> operands) {
    List<Expression> expOperands = ((NaryExpression) expression).getOperand();
    expOperands.clear();
    for (Expression operand : operands) {
        expOperands.add(operand);
    }
}
Also used : NaryExpression(org.hl7.elm.r1.NaryExpression) Expression(org.hl7.elm.r1.Expression) NaryExpression(org.hl7.elm.r1.NaryExpression)

Aggregations

Expression (org.hl7.elm.r1.Expression)1 NaryExpression (org.hl7.elm.r1.NaryExpression)1