mirror of
https://github.com/itplr-kosit/validator.git
synced 2026-05-25 16:55:39 +00:00
Translate getAcceptRecommendation javadoc to English
This commit is contained in:
parent
bd60ddc41d
commit
13acb9ff7e
1 changed files with 9 additions and 7 deletions
|
|
@ -9,7 +9,7 @@ import net.sf.saxon.s9api.XdmNode;
|
|||
|
||||
/**
|
||||
* API Rückgabe Objekt des Ergebnisses des Validierungsprozesses.
|
||||
*
|
||||
*
|
||||
* @author Andreas Penski
|
||||
*/
|
||||
public interface Result {
|
||||
|
|
@ -17,7 +17,7 @@ public interface Result {
|
|||
/**
|
||||
* Zeigt an, ob die Verarbeitung durch den Validator erfolgreich durchlaufen wurde. Diese Funktion macht ausdrücklich
|
||||
* keine Aussage über die zur Akzeptanz.
|
||||
*
|
||||
*
|
||||
* @return true, wenn die Verarbeitung komplett und erfolgreich durchlaufen wurde
|
||||
* @see #getAcceptRecommendation()
|
||||
*/
|
||||
|
|
@ -25,7 +25,7 @@ public interface Result {
|
|||
|
||||
/**
|
||||
* Gibt eine Liste mit Verarbeitungsfehlermeldungen zurück.
|
||||
*
|
||||
*
|
||||
* @return Liste mit Fehlermeldungen
|
||||
*/
|
||||
List<String> getProcessingErrors();
|
||||
|
|
@ -36,7 +36,9 @@ public interface Result {
|
|||
XdmNode getReport();
|
||||
|
||||
/**
|
||||
* Das evaluierte Ergebnis.
|
||||
* The Recommendation based on the evaluation of this Result.
|
||||
*
|
||||
* @return AcceptRecommendation
|
||||
*/
|
||||
AcceptRecommendation getAcceptRecommendation();
|
||||
|
||||
|
|
@ -62,21 +64,21 @@ public interface Result {
|
|||
|
||||
/**
|
||||
* Liefert die Ergebnisse der Schematron-Prüfungen, in der Reihenfolge der Szenario-Konfiguration.
|
||||
*
|
||||
*
|
||||
* @return Liste mit Schematron-Ergebnissen
|
||||
*/
|
||||
List<SchematronOutput> getSchematronResult();
|
||||
|
||||
/**
|
||||
* Liefert ein true, wenn keine Schema-Violations vorhanden sind.
|
||||
*
|
||||
*
|
||||
* @return true wenn Schema-valide
|
||||
*/
|
||||
boolean isSchemaValid();
|
||||
|
||||
/**
|
||||
* Liefert ein true, wenn der Prüfling eine well-formed XML-Datei ist.
|
||||
*
|
||||
*
|
||||
* @return true wenn well-formed
|
||||
*/
|
||||
boolean isWellformed();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue