public class ExternalLinksTable extends POIXMLDocumentPart
| Modifier and Type | Class and Description |
|---|---|
protected class |
ExternalLinksTable.ExternalName |
POIXMLDocumentPart.RelationPart| Constructor and Description |
|---|
ExternalLinksTable() |
ExternalLinksTable(PackagePart part) |
| Modifier and Type | Method and Description |
|---|---|
void |
cacheData(String sheetName,
long rowR,
String cellR,
String v) |
protected void |
commit()
Save the content in the underlying package part.
|
org.openxmlformats.schemas.spreadsheetml.x2006.main.CTExternalLink |
getCTExternalLink()
Deprecated.
will be removed because we don't want to expose this (future implementations may not be
XMLBeans based)
|
List<Name> |
getDefinedNames() |
String |
getLinkedFileName()
Returns the last recorded name of the file that this
is linked to
|
List<String> |
getSheetNames() |
void |
readFrom(InputStream is) |
void |
setLinkedFileName(String target)
Updates the last recorded name for the file that this links to
|
void |
writeTo(OutputStream out) |
_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 ExternalLinksTable()
public ExternalLinksTable(PackagePart part) throws IOException
IOExceptionpublic void readFrom(InputStream is) throws IOException
IOExceptionpublic void writeTo(OutputStream out) throws IOException
IOExceptionprotected 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();
try (OutputStream out = part.getOutputStream()) {
XmlObject bean = getXmlBean(); //the "model" which holds changes in memory
bean.save(out, DEFAULT_XML_OPTIONS);
}
}
commit in class POIXMLDocumentPartIOException - a subclass may throw an IOException if the changes can't be committed@Internal @Removal(version="6.0.0") public org.openxmlformats.schemas.spreadsheetml.x2006.main.CTExternalLink getCTExternalLink()
public String getLinkedFileName()
public void setLinkedFileName(String target)