package com.example; public class FormatterError { /** * Create a paragraph element suited to be a header of the report. Headers * are the elements such as "created by" on "created on" that appear * underneath the title. * * @param reportHeader * a String value that will be the text of * the paragraph. * @return a Paragraph containing the the text passed as the * reportHeader parameter. */ public static String createReportHeader(String reportHeader) { return reportHeader; } }