@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.
|
java.lang.String |
getMajorFont() |
java.lang.String |
getMinorFont() |
java.lang.String |
getName() |
org.openxmlformats.schemas.drawingml.x2006.main.CTOfficeStyleSheet |
getXmlObject()
While developing only!
|
void |
setName(java.lang.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 java.io.IOException, org.apache.xmlbeans.XmlException
java.io.IOException
org.apache.xmlbeans.XmlException
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.CTOfficeStyleSheet getXmlObject()
protected final void commit() throws java.io.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
java.io.IOException
public java.lang.String getMajorFont()
public java.lang.String getMinorFont()
Copyright © 2005-2010 Potix Corporation. All Rights Reserved.