Interface ReportSection
- All Known Implementing Classes:
JsonStateSection,WorkflowInfoSection
public interface ReportSection
Interface for report sections (legacy).
Each implementation provides a specific type of content for the final report. Sections are output in the order they were added.
- Since:
- 2.15.0
- Author:
- devteam@scivicslab.com
-
Method Summary
Modifier and TypeMethodDescriptionReturns the section content.getTitle()Returns the section title.
-
Method Details
-
getTitle
String getTitle()Returns the section title.If null or empty, the section content is output without a title line.
- Returns:
- the section title, or null for no title
-
getContent
String getContent()Returns the section content.If null or empty, the section is skipped in the report.
- Returns:
- the section content
-