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

org.apache.poi.xwpf.converter.core.openxmlformats.IOpenXMLFormatsPartProvider Maven / Gradle / Ivy

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

import java.io.InputStream;
import java.util.List;

import org.openxmlformats.schemas.drawingml.x2006.main.ThemeDocument;
import org.openxmlformats.schemas.wordprocessingml.x2006.main.CTDocument1;
import org.openxmlformats.schemas.wordprocessingml.x2006.main.CTSettings;
import org.openxmlformats.schemas.wordprocessingml.x2006.main.CTStyles;
import org.openxmlformats.schemas.wordprocessingml.x2006.main.FontsDocument;
import org.openxmlformats.schemas.wordprocessingml.x2006.main.FtrDocument;
import org.openxmlformats.schemas.wordprocessingml.x2006.main.HdrDocument;

public interface IOpenXMLFormatsPartProvider
{

    CTDocument1 getDocument()
        throws Exception;

    CTStyles getStyle()
        throws Exception;

    List getFontsDocument()
        throws Exception;

    List getThemeDocuments()
        throws Exception;

    CTSettings getSettings()
        throws Exception;

    HdrDocument getHdrDocumentByPartId( String relId )
        throws Exception;

    FtrDocument getFtrDocumentByPartId( String relId )
        throws Exception;

    InputStream getInputStreamByRelId( String partName, String relId )
        throws Exception;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy