org.ofdrw.tool.merge.PageEntry Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ofdrw-tool Show documentation
Show all versions of ofdrw-tool Show documentation
OFD Reader and Writer 文档操作工具,提供如文档合并等操作。
package org.ofdrw.tool.merge;
/**
* 页面项目
*
* @author 权观宇
* @since 2021-11-08 20:52:49
*/
public class PageEntry {
/**
* 关联文档上下文
*/
public DocContext docCtx;
/**
* 页面索引号(页码从1开始)
*/
public Integer pageIndex;
/**
* 是否复制模板
*
* 默认:true 复制模板
*/
public boolean copyTemplate = true;
/**
* 是否复注释
*
* 默认:true 复制注释
*/
public boolean copyAnnotations = true;
/**
* 创建迁移页面对象
*
* @param pageIndex 页面索引号(页码从1开始)
* @param docCtx 上下文
*/
public PageEntry(Integer pageIndex, DocContext docCtx) {
this.docCtx = docCtx;
this.pageIndex = pageIndex;
}
}