From 8b8b7c425d867958135a8ef8dfa637be70caa2f9 Mon Sep 17 00:00:00 2001 From: Jiaju Zhuang Date: Mon, 26 Aug 2019 10:52:30 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E8=AF=BB=E5=86=99=E9=80=BB?= =?UTF-8?q?=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../alibaba/excel/context/WriteContext.java | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/main/java/com/alibaba/excel/context/WriteContext.java b/src/main/java/com/alibaba/excel/context/WriteContext.java index 3ee97d1..17db4ca 100644 --- a/src/main/java/com/alibaba/excel/context/WriteContext.java +++ b/src/main/java/com/alibaba/excel/context/WriteContext.java @@ -14,41 +14,41 @@ import com.alibaba.excel.write.metadata.holder.WriteWorkbookHolder; /** * Write context - * + * * @author jipengfei */ public interface WriteContext { /** * If the current sheet already exists, select it; if not, create it - * - * @param writeSheet + * + * @param writeSheet Current sheet */ void currentSheet(WriteSheet writeSheet); /** * If the current table already exists, select it; if not, create it - * + * * @param writeTable */ void currentTable(WriteTable writeTable); /** * All information about the workbook you are currently working on - * + * * @return */ WriteWorkbookHolder writeWorkbookHolder(); /** * All information about the sheet you are currently working on - * + * * @return */ WriteSheetHolder writeSheetHolder(); /** * All information about the table you are currently working on - * + * * @return */ WriteTableHolder writeTableHolder(); @@ -86,7 +86,7 @@ public interface WriteContext { /** * Get outputStream - * + * * @return * @deprecated please us e{@link #writeWorkbookHolder()} ()} */ @@ -95,7 +95,7 @@ public interface WriteContext { /** * Get workbook - * + * * @return * @deprecated please us e{@link #writeWorkbookHolder()} ()} */ -- GitLab