@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, isCommited, isCommitted, onDocumentCreate, onDocumentRead, onDocumentRemove, onSave, prepareForCommit, read, rebase, removeRelation, removeRelation, removeRelation, setCommited, setCommitted, toString
public XSLFTheme(PackagePart part) throws java.io.IOException, org.apache.xmlbeans.XmlException
java.io.IOException
org.apache.xmlbeans.XmlException
public 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
POIXMLDocumentPart
Sub-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 POIXMLDocumentPart
java.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 2020 The Apache Software Foundation or its licensors, as applicable.