tech.grasshopper.pdf.section.dashboard.DashboardDisplayUtil Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cucumber-pdf-report Show documentation
Show all versions of cucumber-pdf-report Show documentation
Generates Cucumber execution report in PDF format
The newest version!
package tech.grasshopper.pdf.section.dashboard;
import java.awt.Color;
import org.vandeseer.easytable.structure.Row;
import org.vandeseer.easytable.structure.cell.TextCell;
public class DashboardDisplayUtil {
public static Row spacerRow() {
return Row.builder().add(TextCell.builder().text("").padding(0f).colSpan(5).build()).build();
}
public static TextCell spacerCell() {
return TextCell.builder().text("").backgroundColor(Color.WHITE).borderWidth(0f).build();
}
}