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

org.opencds.cqf.cql.engine.debug.DebugMapEntry Maven / Gradle / Ivy

Go to download

The engine library for the Clinical Quality Language Java reference implementation

The newest version!
package org.opencds.cqf.cql.engine.debug;

public class DebugMapEntry {
    private DebugLocator locator;

    public DebugLocator getLocator() {
        return locator;
    }

    private DebugAction action;

    public DebugAction getAction() {
        return this.action;
    }

    public DebugMapEntry(DebugLocator locator, DebugAction action) {
        if (locator == null) {
            throw new IllegalArgumentException("locator required");
        }
        this.locator = locator;
        this.action = action;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy