org.docx4j.openpackaging.packages.ProtectPresentation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of docx4j-core Show documentation
Show all versions of docx4j-core Show documentation
docx4j is a library which helps you to work with the Office Open
XML file format as used in docx
documents, pptx presentations, and xlsx spreadsheets.
/**
*
*/
package org.docx4j.openpackaging.packages;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* Unlike docx and xlsx, there are no additional protection
* settings for a pptx,just those in ProtectionSettings.
*
* @author jharrop
*
*/
public class ProtectPresentation extends ProtectionSettings {
protected static Logger log = LoggerFactory.getLogger(ProtectPresentation.class);
public ProtectPresentation(PresentationMLPackage pkg) {
super(pkg);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy