![JAR search and dependency download from the Maven repository](/logo.png)
org.opencds.cqf.cql.engine.debug.DebugMapEntry Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of engine Show documentation
Show all versions of engine Show documentation
The engine library for the Clinical Quality Language Java reference implementation
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 - 2025 Weber Informatics LLC | Privacy Policy