org.cqframework.cql.cql2elm.model.LibraryRef Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cql-to-elm Show documentation
Show all versions of cql-to-elm Show documentation
The cql-to-elm library for the Clinical Quality Language Java reference implementation
package org.cqframework.cql.cql2elm.model;
import org.hl7.elm.r1.Expression;
// Note: This class is only used as a place-holder during resolution in a translator (or compiler...)
public class LibraryRef extends Expression {
private String libraryName;
public String getLibraryName() {
return libraryName;
}
public void setLibraryName(String value) {
libraryName = value;
}
}