/** * */ package at.gv.egiz.pdfas.impl.api.analyze; import java.util.List; import at.gv.egiz.pdfas.api.analyze.AnalyzeResult; import at.gv.egiz.pdfas.api.exceptions.PdfAsException; /** * Holds the result of an analyzation. * * @author wprinz */ public class AnalyzeResultImpl implements AnalyzeResult { /** * The found signatures. */ protected List signatures = null; /** * Constructor. * * @param signatures * The found signatures. */ public AnalyzeResultImpl(List signatures) { if (signatures == null) { throw new IllegalArgumentException("The list of found signatures must not be null."); } this.signatures = signatures; } /** * @see at.gv.egiz.pdfas.api.analyze.AnalyzeResult#getSignatures() */ public List getSignatures() throws PdfAsException { return this.signatures; } }