@Beta public class XSLFTheme extends POIXMLDocumentPart
DEFAULT_XML_OPTIONS
Constructor and Description |
---|
XSLFTheme(PackagePart part,
PackageRelationship rel) |
Modifier and Type | Method and Description |
---|---|
protected void |
commit()
Save the content in the underlying package part.
|
String |
getMajorFont() |
String |
getMinorFont() |
String |
getName() |
org.openxmlformats.schemas.drawingml.x2006.main.CTOfficeStyleSheet |
getXmlObject()
While developing only!
|
void |
setName(String name)
Set name of this theme
|
addRelation, clearMemoryPackagePart, createRelationship, createRelationship, createRelationship, getPackagePart, getPackageRelationship, getParent, getRelationById, getRelationCounter, getRelationId, getRelations, getTargetPart, onDocumentCreate, onDocumentRead, onDocumentRemove, onSave, read, rebase, removeRelation, removeRelation, toString
public XSLFTheme(PackagePart part, PackageRelationship rel) throws IOException, org.apache.xmlbeans.XmlException
IOException
org.apache.xmlbeans.XmlException
public String getName()
public void setName(String name)
name
- name of this theme@Internal public org.openxmlformats.schemas.drawingml.x2006.main.CTOfficeStyleSheet getXmlObject()
protected final void commit() throws IOException
POIXMLDocumentPart
protected void commit() throws IOException {
PackagePart part = getPackagePart();
OutputStream out = part.getOutputStream();
XmlObject bean = getXmlBean(); //the "model" which holds changes in memory
bean.save(out, DEFAULT_XML_OPTIONS);
out.close();
}
commit
in class POIXMLDocumentPart
IOException
public String getMajorFont()
public String getMinorFont()
Copyright © 2020. All rights reserved.