001package org.dcm4che3.tool.qc.test;
002
003import org.dcm4che3.tool.common.test.TestResult;
004
005import java.util.ArrayList;
006import java.util.List;
007
008/**
009 * Created by umberto on 8/20/15.
010 */
011public class MultipleQCResult implements TestResult{
012
013    private List<QCResult> results = new ArrayList<QCResult>();
014
015    public List<QCResult> getResults() {
016        return results;
017    }
018
019    public void setResults(List<QCResult> results) {
020        this.results = results;
021    }
022}