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

com.moon.poi.excel.ProxyCommentSetter Maven / Gradle / Ivy

package com.moon.poi.excel;

import org.apache.poi.ss.usermodel.Cell;
import org.apache.poi.ss.usermodel.Comment;

/**
 * 注释设置器
 *
 * @author moonsky
 */
class ProxyCommentSetter extends ProxySetter {

    public ProxyCommentSetter(Cell cell) { super(cell); }

    /**
     * 设置注释到单元格
     *
     * @param comment
     */
    @Override
    void setup(Comment comment) {
        getKey().setCellComment(comment);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy