@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(String name)
Get a color from the theme's color scheme by name
|
String |
getMajorFont() |
String |
getMinorFont() |
String |
getName() |
org.openxmlformats.schemas.drawingml.x2006.main.CTOfficeStyleSheet |
getXmlObject()
While developing only!
|
void |
importTheme(XSLFTheme theme) |
void |
setName(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 IOException, org.apache.xmlbeans.XmlException
IOExceptionorg.apache.xmlbeans.XmlExceptionpublic void importTheme(XSLFTheme theme)
public String getName()
public void setName(String name)
name - name of this theme@Internal public org.openxmlformats.schemas.drawingml.x2006.main.CTColor getCTColor(String name)
null if not found@Internal public org.openxmlformats.schemas.drawingml.x2006.main.CTOfficeStyleSheet getXmlObject()
protected final void commit()
throws 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();
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 POIXMLDocumentPartIOException - a subclass may throw an IOException if the changes can't be committedpublic String getMajorFont()
public String getMinorFont()