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

org.opencb.biodata.models.pharma.PharmaGuidelineAnnotation Maven / Gradle / Ivy

The newest version!
package org.opencb.biodata.models.pharma;

import org.opencb.biodata.models.pharma.guideline.PharmaDosingGuideline;

import java.util.List;

public class PharmaGuidelineAnnotation {
    private List citations;
    private PharmaDosingGuideline guideline;

    public PharmaGuidelineAnnotation() {
    }

    public PharmaGuidelineAnnotation(List citations, PharmaDosingGuideline guideline) {
        this.citations = citations;
        this.guideline = guideline;
    }

    @Override
    public String toString() {
        final StringBuilder sb = new StringBuilder("PharmaGuidelineAnnotation{");
        sb.append("citations=").append(citations);
        sb.append(", guideline=").append(guideline);
        sb.append('}');
        return sb.toString();
    }

    public List getCitations() {
        return citations;
    }

    public PharmaGuidelineAnnotation setCitations(List citations) {
        this.citations = citations;
        return this;
    }

    public PharmaDosingGuideline getGuideline() {
        return guideline;
    }

    public PharmaGuidelineAnnotation setGuideline(PharmaDosingGuideline pharmaDosingGuideline) {
        this.guideline = pharmaDosingGuideline;
        return this;
    }
}