Klasse DocumentConverter<T>

java.lang.Object
io.jenkins.plugins.coverage.adapter.converter.DocumentConverter<T>
Bekannte direkte Unterklassen:
JSONDocumentConverter

public abstract class DocumentConverter<T> extends Object
  • Konstruktordetails Linksymbol

    • DocumentConverter Linksymbol

      public DocumentConverter()
  • Methodendetails Linksymbol

    • convert Linksymbol

      public Document convert(T report) throws CoverageException
      Convert other format report to standard format Document.
      Parameter:
      report - other format report
      Gibt zurück:
      document converted by other report
      Löst aus:
      CoverageException
    • convert Linksymbol

      protected abstract Document convert(T report, Document document) throws CoverageException
      Convert other format report to standard format Document.
      Parameter:
      report - other format report
      document - document that the report will convert to
      Gibt zurück:
      document converted by other report
      Löst aus:
      CoverageException