org.subtlelib.poi.api.style.Style Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of poi.builder Show documentation
Show all versions of poi.builder Show documentation
Convenience library for apache poi-based xls documents creation
The newest version!
package org.subtlelib.poi.api.style;
import org.apache.poi.ss.usermodel.CellStyle;
import org.subtlelib.poi.api.workbook.WorkbookContext;
/**
*
* Designates the class that holds some formatting settings.
* Implement this class directly only if you need some basic non-additive style.
* Otherwise, consider implementing more specific interface: {@link AdditiveStyle}
*
*
* Classes that implement Style should be immutable, because they are being
* used as keys in a map in StyleRegistry.
*
*/
public interface Style {
public void enrich(WorkbookContext workbookContext, CellStyle style);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy