All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.cqframework.cql.cql2elm.model.Invocation Maven / Gradle / Ivy

Go to download

The cql-to-elm library for the Clinical Quality Language Java reference implementation

There is a newer version: 3.18.0
Show newest version
package org.cqframework.cql.cql2elm.model;

import org.hl7.cql.model.DataType;
import org.hl7.elm.r1.Expression;
import org.hl7.elm.r1.TypeSpecifier;

public interface Invocation {
    Iterable getSignature();

    void setSignature(Iterable signature);

    Iterable getOperands();

    void setOperands(Iterable operands);

    void setResultType(DataType resultType);

    Expression getExpression();

    void setResolution(OperatorResolution resolution);

    OperatorResolution getResolution();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy