#28 Add CreateReportInput to result in API

This commit is contained in:
Andreas Penski (init) 2019-06-21 14:05:40 +02:00
parent c8b81b78ea
commit e83b316d95
4 changed files with 19 additions and 8 deletions

View file

@ -5,6 +5,8 @@ import java.util.List;
import org.oclc.purl.dsdl.svrl.SchematronOutput;
import org.w3c.dom.Document;
import de.kosit.validationtool.model.reportInput.CreateReportInput;
import net.sf.saxon.s9api.XdmNode;
/**
@ -12,9 +14,15 @@ import net.sf.saxon.s9api.XdmNode;
*
* @author Andreas Penski
*/
public interface Result {
/**
* Gibt die vom Validator erstelle interne Berichts-'Vorstufe' als Objekt zurück.
*
* @return die Berichts-'Vorstufe'
*/
CreateReportInput getReportInput();
/** Der generierte Report. */
XdmNode getReport();