org.docx4j.openpackaging.parts.WordprocessingML.MetafilePart Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of docx4j Show documentation
Show all versions of docx4j 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.parts.WordprocessingML;
import org.docx4j.openpackaging.exceptions.InvalidFormatException;
import org.docx4j.openpackaging.parts.ExternalTarget;
import org.docx4j.openpackaging.parts.PartName;
public abstract class MetafilePart extends BinaryPartAbstractImage {
public MetafilePart(PartName partName) throws InvalidFormatException {
super(partName);
// Can't setContentType or setRelationshipType, since
// these will differ depending on the nature of the data.
// Common binary parts should extend this class to
// provide that information.
}
public MetafilePart(ExternalTarget externalTarget) {
super(externalTarget);
}
}