@Beta public class XSLFTheme extends POIXMLDocumentPart
POIXMLDocumentPart.RelationPart| Constructor and Description |
|---|
XSLFTheme(PackagePart part) |
| Modifier and Type | Method and Description |
|---|---|
protected void |
commit()
Save the content in the underlying package part.
|
org.openxmlformats.schemas.drawingml.x2006.main.CTColor |
getCTColor(java.lang.String name)
Get a color from the theme's color scheme by name
|
java.lang.String |
getMajorFont() |
java.lang.String |
getMinorFont() |
java.lang.String |
getName() |
org.openxmlformats.schemas.drawingml.x2006.main.CTOfficeStyleSheet |
getXmlObject()
While developing only!
|
void |
importTheme(XSLFTheme theme) |
void |
setName(java.lang.String name)
Set name of this theme
|
_invokeOnDocumentRead, addRelation, createRelationship, createRelationship, createRelationship, getNextPartNumber, getPackagePart, getParent, getRelationById, getRelationId, getRelationPartById, getRelationParts, getRelations, getTargetPart, isCommitted, onDocumentCreate, onDocumentRead, onDocumentRemove, onSave, prepareForCommit, read, rebase, removeRelation, removeRelation, removeRelation, setCommitted, toStringpublic XSLFTheme(PackagePart part) throws java.io.IOException, org.apache.xmlbeans.XmlException
java.io.IOExceptionorg.apache.xmlbeans.XmlExceptionpublic void importTheme(XSLFTheme theme)
public java.lang.String getName()
public void setName(java.lang.String name)
name - name of this theme@Internal public org.openxmlformats.schemas.drawingml.x2006.main.CTColor getCTColor(java.lang.String name)
null if not found@Internal public org.openxmlformats.schemas.drawingml.x2006.main.CTOfficeStyleSheet getXmlObject()
protected final void commit()
throws java.io.IOException
POIXMLDocumentPartSub-classes should override and add logic to marshal the "model" into Ooxml4J.
For example, the code saving a generic XML entry may look as follows:
protected void commit() throws IOException {
PackagePart part = getPackagePart();
try (OutputStream out = part.getOutputStream()) {
XmlObject bean = getXmlBean(); //the "model" which holds changes in memory
bean.save(out, DEFAULT_XML_OPTIONS);
}
}
commit in class POIXMLDocumentPartjava.io.IOException - a subclass may throw an IOException if the changes can't be committedpublic java.lang.String getMajorFont()
public java.lang.String getMinorFont()
Copyright 2022 The Apache Software Foundation or its licensors, as applicable.