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

org.apache.poi.xwpf.converter.core.IMasterPageHandler Maven / Gradle / Ivy

package org.apache.poi.xwpf.converter.core;

import org.apache.poi.xwpf.converter.core.styles.XWPFStylesDocument;
import org.openxmlformats.schemas.wordprocessingml.x2006.main.CTHdrFtrRef;
import org.openxmlformats.schemas.wordprocessingml.x2006.main.CTSectPr;

public interface IMasterPageHandler
{

    XWPFStylesDocument getStylesDocument();

    E createMasterPage( CTSectPr sectPr );

    void setActiveMasterPage( E currentMasterPage );

    void visitHeaderRef( CTHdrFtrRef headerRef, CTSectPr sectPr, E masterPage )
        throws Exception;

    void visitFooterRef( CTHdrFtrRef footerRef, CTSectPr sectPr, E masterPage )
        throws Exception;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy