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

    • DocumentConverter

      public DocumentConverter()
  • Methodendetails

    • convert

      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

      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