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

org.subtlelib.poi.api.style.Style Maven / Gradle / Ivy

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