File tree Expand file tree Collapse file tree 1 file changed +7
-8
lines changed
rdf-file-core/src/main/java/com/alipay/rdf/file/interfaces Expand file tree Collapse file tree 1 file changed +7
-8
lines changed Original file line number Diff line number Diff line change 44
55/**
66 * Copyright (C) 2013-2018 Ant Financial Services Group
7- *
7+ *
88 * 文件写入接口
9- *
9+ *
1010 * @author hongwei.quhw
1111 * @version $Id: FileWriter.java, v 0.1 2016-12-20 下午4:48:11 hongwei.quhw Exp $
1212 */
1313public interface FileWriter {
1414
1515 /**
1616 * 写入头部信息, 传入一个javabean对象
17- *
17+ *
1818 * @param headBean
1919 */
2020 void writeHead (Object headBean );
2121
2222 /**
2323 * 写入一行记录, 传入一个javabean对象
24- *
25- * @param summary 汇总字段
26- * @param rowBean
24+ *
25+ * @param rowBean
2726 */
2827 void writeRow (Object rowBean );
2928
3029 /**
3130 * 写入尾部信息, 传入一个javabean对象
32- *
31+ *
3332 * @param tailBean 含尾部变量的模型
3433 */
3534 void writeTail (Object tailBean );
3635
3736 /**
3837 * 写入一行
39- *
38+ *
4039 * @param line
4140 */
4241 void writeLine (String line );
You can’t perform that action at this time.
0 commit comments