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

org.ofdrw.tool.merge.PageEntry Maven / Gradle / Ivy

Go to download

OFD Reader and Writer 文档操作工具,提供如文档合并等操作。

There is a newer version: 2.3.4
Show newest version
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; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy