All Downloads are FREE. Search and download functionalities are using the official Maven repository.

tech.grasshopper.pdf.section.dashboard.DashboardDisplayUtil Maven / Gradle / Ivy

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();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy