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

org.opencds.cqf.cds.builders.BaseBuilder Maven / Gradle / Ivy

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