Example usage for org.apache.poi.ss.usermodel CellStyle interface-usage

List of usage examples for org.apache.poi.ss.usermodel CellStyle interface-usage

Introduction

In this page you can find the example usage for org.apache.poi.ss.usermodel CellStyle interface-usage.

Usage

From source file com.miraisolutions.xlconnect.HCellStyle.java

public class HCellStyle extends Common implements CellStyle {

    private final HSSFWorkbook workbook;
    private final HSSFCellStyle cellStyle;

    public HCellStyle(HSSFWorkbook workbook, HSSFCellStyle cellStyle) {

From source file com.miraisolutions.xlconnect.SSCellStyle.java

public class SSCellStyle extends Common implements CellStyle {

    org.apache.poi.ss.usermodel.Workbook workbook;
    org.apache.poi.ss.usermodel.CellStyle cellStyle;

    public SSCellStyle(org.apache.poi.ss.usermodel.Workbook workbook,

From source file com.miraisolutions.xlconnect.XCellStyle.java

/**
 * This class uses parts from XSSFCellStyle.java at
 * http://svn.apache.org/repos/asf/poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFCellStyle.java
 * by The Apache Software Foundation
 */
public class XCellStyle extends Common implements CellStyle {