org.opencds.cqf.cds.builders.BaseBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cds Show documentation
Show all versions of cds Show documentation
cds-hooks module for the cqf-ruler
The newest version!
package org.opencds.cqf.cds.builders;
/*
These builders are based off of work performed by Philips Healthcare.
I simplified their work with this generic base class and added/expanded builders.
Tip of the hat to Philips Healthcare developer nly98977
*/
public class BaseBuilder {
protected T complexProperty;
public BaseBuilder(T complexProperty) {
this.complexProperty = complexProperty;
}
public T build() {
return complexProperty;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy