Browse Source

修改注释

4.1.3.A
jueyue 8 years ago
parent
commit
2f6322e27d
4 changed files with 5 additions and 9 deletions
  1. +1
    -1
      easypoi-base/src/main/java/org/jeecgframework/poi/excel/export/ExcelBatchExportServer.java
  2. +1
    -4
      easypoi-base/src/main/java/org/jeecgframework/poi/excel/export/template/TemplateSumHanlder.java
  3. +1
    -2
      easypoi-base/src/main/java/org/jeecgframework/poi/excel/html/css/ICssConvertToExcel.java
  4. +2
    -2
      easypoi-base/src/main/java/org/jeecgframework/poi/excel/html/css/ICssConvertToHtml.java

+ 1
- 1
easypoi-base/src/main/java/org/jeecgframework/poi/excel/export/ExcelBatchExportServer.java View File

@@ -23,7 +23,7 @@ import org.jeecgframework.poi.util.PoiPublicUtil;
/** /**
* 提供批次插入服务 * 提供批次插入服务
* @author JueYue * @author JueYue
* @date 2016年8月29日
* 2016年8月29日
*/ */
public class ExcelBatchExportServer extends ExcelExportServer { public class ExcelBatchExportServer extends ExcelExportServer {


+ 1
- 4
easypoi-base/src/main/java/org/jeecgframework/poi/excel/export/template/TemplateSumHanlder.java View File

@@ -2,10 +2,8 @@ package org.jeecgframework.poi.excel.export.template;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.HashMap; import java.util.HashMap;
import java.util.HashSet;
import java.util.List; import java.util.List;
import java.util.Map; import java.util.Map;
import java.util.Set;
import org.apache.commons.lang3.StringUtils; import org.apache.commons.lang3.StringUtils;
import org.apache.poi.ss.usermodel.Cell; import org.apache.poi.ss.usermodel.Cell;
@@ -20,7 +18,7 @@ import static org.jeecgframework.poi.util.PoiElUtil.*;
* 2.遍历时统计数据 * 2.遍历时统计数据
* 3.遍历后设置数据 * 3.遍历后设置数据
* @author JueYue * @author JueYue
* @date 2016年6月19日
* 2016年6月19日
*/ */
public class TemplateSumHanlder { public class TemplateSumHanlder {
@@ -129,7 +127,6 @@ public class TemplateSumHanlder {
/** /**
* 统计对象 * 统计对象
* @author JueYue * @author JueYue
* @date 2016年6月19日
*/ */
protected class TemplateSumEntity { protected class TemplateSumEntity {
/** /**


+ 1
- 2
easypoi-base/src/main/java/org/jeecgframework/poi/excel/html/css/ICssConvertToExcel.java View File

@@ -19,7 +19,7 @@ import org.apache.poi.ss.usermodel.Cell;
import org.jeecgframework.poi.excel.html.entity.CellStyleEntity; import org.jeecgframework.poi.excel.html.entity.CellStyleEntity;
/** /**
* CSS <--> Cell Style 转换类
* CSS Cell Style 转换类
* @author JueYue * @author JueYue
* 2016年3月20日 下午4:53:04 * 2016年3月20日 下午4:53:04
*/ */
@@ -28,7 +28,6 @@ public interface ICssConvertToExcel {
* 把HTML样式转换成Cell样式 * 把HTML样式转换成Cell样式
* @param cell * @param cell
* @param style * @param style
* @return
*/ */
public void convertToExcel(Cell cell, CellStyleEntity style); public void convertToExcel(Cell cell, CellStyleEntity style);


+ 2
- 2
easypoi-base/src/main/java/org/jeecgframework/poi/excel/html/css/ICssConvertToHtml.java View File

@@ -19,7 +19,7 @@ import org.apache.poi.ss.usermodel.Cell;
import org.jeecgframework.poi.excel.html.entity.CellStyleEntity; import org.jeecgframework.poi.excel.html.entity.CellStyleEntity;
/** /**
* CSS <--> Cell Style 转换类
* CSS Cell Style 转换类
* @author JueYue * @author JueYue
* 2016年3月20日 下午4:53:04 * 2016年3月20日 下午4:53:04
*/ */
@@ -27,7 +27,7 @@ public interface ICssConvertToHtml {
/** /**
* 把Excel单元格样式转换成HTML样式 * 把Excel单元格样式转换成HTML样式
* @param cell * @param cell
* @return
*
*/ */
public void convertToHtml(Cell cell, CellStyleEntity style); public void convertToHtml(Cell cell, CellStyleEntity style);


Loading…
Cancel
Save