public class ThemesTable extends POIXMLDocumentPart
Modifier and Type | Class and Description |
---|---|
static class |
ThemesTable.ThemeElement |
POIXMLDocumentPart.RelationPart
Constructor and Description |
---|
ThemesTable()
Create a new, empty ThemesTable
|
ThemesTable(PackagePart part)
Construct a ThemesTable.
|
ThemesTable(PackagePart part,
PackageRelationship rel)
Deprecated.
in POI 3.14, scheduled for removal in POI 3.16
|
ThemesTable(org.openxmlformats.schemas.drawingml.x2006.main.ThemeDocument theme)
Construct a ThemesTable from an existing ThemeDocument.
|
Modifier and Type | Method and Description |
---|---|
protected void |
commit()
Save the content in the underlying package part.
|
XSSFColor |
getThemeColor(int idx)
Convert a theme "index" (as used by fonts etc) into a color.
|
void |
inheritFromThemeAsRequired(XSSFColor color)
If the colour is based on a theme, then inherit
information (currently just colours) from it as
required.
|
void |
writeTo(java.io.OutputStream out)
Write this table out as XML.
|
_invokeOnDocumentRead, addRelation, addRelation, createRelationship, createRelationship, createRelationship, getPackagePart, getPackageRelationship, getParent, getRelationById, getRelationId, getRelationParts, getRelations, getTargetPart, onDocumentCreate, onDocumentRead, onDocumentRemove, onSave, prepareForCommit, read, rebase, removeRelation, removeRelation, toString
public ThemesTable()
public ThemesTable(PackagePart part) throws java.io.IOException
part
- A PackagePart.java.io.IOException
@Deprecated public ThemesTable(PackagePart part, PackageRelationship rel) throws java.io.IOException
java.io.IOException
public ThemesTable(org.openxmlformats.schemas.drawingml.x2006.main.ThemeDocument theme)
theme
- A ThemeDocument.public XSSFColor getThemeColor(int idx)
idx
- A theme "index"public void inheritFromThemeAsRequired(XSSFColor color)
public void writeTo(java.io.OutputStream out) throws java.io.IOException
out
- The stream to write to.java.io.IOException
- if an error occurs while writing.protected 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
Copyright 2016 The Apache Software Foundation or its licensors, as applicable.