|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.apache.poi.POIXMLDocumentPart
org.apache.poi.xwpf.usermodel.XWPFFootnotes
public class XWPFFootnotes
Looks after the collection of Footnotes for a document
| Nested Class Summary |
|---|
| Nested classes/interfaces inherited from class org.apache.poi.POIXMLDocumentPart |
|---|
POIXMLDocumentPart.RelationPart |
| Field Summary | |
|---|---|
protected XWPFDocument |
document
|
| Constructor Summary | |
|---|---|
XWPFFootnotes()
Construct XWPFFootnotes from scratch for a new document. |
|
XWPFFootnotes(PackagePart part)
Construct XWPFFootnotes from a package part |
|
| Method Summary | |
|---|---|
XWPFFootnote |
addFootnote(org.openxmlformats.schemas.wordprocessingml.x2006.main.CTFtnEdn note)
add a footnote to the document |
void |
addFootnote(XWPFFootnote footnote)
add an XWPFFootnote to the document |
protected void |
commit()
Save the content in the underlying package part. |
XWPFFootnote |
getFootnoteById(int id)
|
java.util.List<XWPFFootnote> |
getFootnotesList()
|
XWPFDocument |
getXWPFDocument()
|
protected void |
onDocumentRead()
Read document |
void |
setFootnotes(org.openxmlformats.schemas.wordprocessingml.x2006.main.CTFootnotes footnotes)
Sets the ctFootnotes |
void |
setXWPFDocument(XWPFDocument doc)
|
| Methods inherited from class org.apache.poi.POIXMLDocumentPart |
|---|
_invokeOnDocumentRead, addRelation, createRelationship, createRelationship, createRelationship, getNextPartNumber, getPackagePart, getParent, getRelationById, getRelationId, getRelationParts, getRelations, getTargetPart, onDocumentCreate, onDocumentRemove, onSave, prepareForCommit, read, rebase, removeRelation, removeRelation, toString |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Field Detail |
|---|
protected XWPFDocument document
| Constructor Detail |
|---|
public XWPFFootnotes(PackagePart part)
throws java.io.IOException,
OpenXML4JException
part - the package part holding the data of the footnotes,
java.io.IOException
OpenXML4JExceptionpublic XWPFFootnotes()
| Method Detail |
|---|
protected void onDocumentRead()
throws java.io.IOException
onDocumentRead in class POIXMLDocumentPartjava.io.IOException - a subclass may throw an IOException when a document is read
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 POIXMLDocumentPartjava.io.IOException - a subclass may throw an IOException if the changes can't be committedpublic java.util.List<XWPFFootnote> getFootnotesList()
public XWPFFootnote getFootnoteById(int id)
public void setFootnotes(org.openxmlformats.schemas.wordprocessingml.x2006.main.CTFootnotes footnotes)
footnotes - public void addFootnote(XWPFFootnote footnote)
footnote -
java.io.IOExceptionpublic XWPFFootnote addFootnote(org.openxmlformats.schemas.wordprocessingml.x2006.main.CTFtnEdn note)
note -
java.io.IOExceptionpublic XWPFDocument getXWPFDocument()
IBody.getPart()public void setXWPFDocument(XWPFDocument doc)
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||