comments = new ArrayList<XWPFComment>();
paragraphs = new ArrayList<XWPFParagraph>();
tables= new ArrayList<XWPFTable>();
+ bodyElements = new ArrayList<IBodyElement>();
+ footers = new ArrayList<XWPFFooter>();
+ headers = new ArrayList<XWPFHeader>();
+ footnotes = new HashMap<Integer, XWPFFootnote>();
+ endnotes = new HashMap<Integer, XWPFFootnote>();
ctDocument = CTDocument1.Factory.newInstance();
ctDocument.addNewBody();
return embedds;
}
+ /**
+ * Finds that for example the 2nd entry in the body list is the 1st paragraph
+ */
+ private int getBodyElementSpecificPos(int pos, List<? extends IBodyElement> list) {
+ // If there's nothing to find, skip it
+ if(list.size() == 0) {
+ return -1;
+ }
+
+ if(pos >= 0 && pos < bodyElements.size()) {
+ // Ensure the type is correct
+ IBodyElement needle = bodyElements.get(pos);
+ if(needle.getElementType() != list.get(0).getElementType()) {
+ // Wrong type
+ return -1;
+ }
+
+ // Work back until we find it
+ int startPos = Math.min(pos, list.size()-1);
+ for(int i=startPos; i>=0; i--) {
+ if(list.get(i) == needle) {
+ return i;
+ }
+ }
+ }
+
+ // Couldn't be found
+ return -1;
+ }
+
/**
* get with the position of a Paragraph in the bodyelement array list
* the position of this paragraph in the paragraph array list
*
*/
public int getParagraphPos(int pos){
- if(pos >= 0 && pos < bodyElements.size()){
- if(bodyElements.get(pos).getElementType() == BodyElementType.PARAGRAPH){
- int startPos;
- //find the startpoint for searching
- if(pos < paragraphs.size()){
- startPos = pos;
- }
- else{
- startPos = (paragraphs.size());
- }
- for(int i = startPos; i < 0; i--){
- if(paragraphs.get(i) == bodyElements.get(pos))
- return i;
- }
- }
- }
- if(paragraphs.size() == 0){
- return 0;
- }
- return -1;
+ return getBodyElementSpecificPos(pos, paragraphs);
}
/**
* else it will return null.
*/
public int getTablePos(int pos){
- if(pos >= 0 && pos < bodyElements.size()){
- if(bodyElements.get(pos).getElementType() == BodyElementType.TABLE){
- int startPos;
- //find the startpoint for searching
- if(pos < tables.size()){
- startPos = pos;
- }
- else{
- startPos = (tables.size());
- }
- for(int i = startPos; i > 0; i--){
- if(tables.get(i) == bodyElements.get(pos))
- return i;
- }
- }
- }
- if(tables.size() == 0){
- return 0;
- }
- else
- return -1;
+ return getBodyElementSpecificPos(pos, tables);
}
/**
*/
public XWPFParagraph createParagraph(){
XWPFParagraph p = new XWPFParagraph(ctDocument.getBody().addNewP(), this);
+ bodyElements.add(p);
paragraphs.add(p);
return p;
}
* @return true if removing was successfully, else return false
*/
public boolean removeBodyElement(int pos){
- if(pos >= 0 && pos < bodyElements.size()){
- if(bodyElements.get(pos).getElementType() == BodyElementType.TABLE){
- bodyElements.remove(pos);
- Integer tablePos = getTablePos(pos);
+ if(pos >= 0 && pos < bodyElements.size()) {
+ BodyElementType type = bodyElements.get(pos).getElementType();
+ if(type == BodyElementType.TABLE){
+ int tablePos = getTablePos(pos);
tables.remove(tablePos);
ctDocument.getBody().removeTbl(tablePos);
- return true;
}
- if(bodyElements.get(pos).getElementType() == BodyElementType.PARAGRAPH){
- bodyElements.remove(pos);
- Integer paraPos = getParagraphPos(pos);
+ if(type == BodyElementType.PARAGRAPH){
+ int paraPos = getParagraphPos(pos);
paragraphs.remove(paraPos);
ctDocument.getBody().removeP(paraPos);
- return true;
}
+ bodyElements.remove(pos);
+ return true;
}
return false;
}
* @return a new table
*/
public XWPFTable createTable(){
- return new XWPFTable(ctDocument.getBody().addNewTbl(), this);
+ XWPFTable table = new XWPFTable(ctDocument.getBody().addNewTbl(), this);
+ bodyElements.add(table);
+ tables.add(table);
+ return table;
}
/**
* @return table
*/
public XWPFTable createTable(int rows, int cols) {
- return new XWPFTable(ctDocument.getBody().addNewTbl(), this, rows, cols);
+ XWPFTable table = new XWPFTable(ctDocument.getBody().addNewTbl(), this, rows, cols);
+ bodyElements.add(table);
+ tables.add(table);
+ return table;
}
e.printStackTrace();
}
}
+
+ public void testRemoveBodyElement() {
+ XWPFDocument doc = XWPFTestDataSamples.openSampleDocument("sample.docx");
+ assertEquals(3, doc.getParagraphs().size());
+ assertEquals(3, doc.getBodyElements().size());
+
+ XWPFParagraph p1 = doc.getParagraphs().get(0);
+ XWPFParagraph p2 = doc.getParagraphs().get(1);
+ XWPFParagraph p3 = doc.getParagraphs().get(2);
+
+ assertEquals(p1, doc.getBodyElements().get(0));
+ assertEquals(p1, doc.getParagraphs().get(0));
+ assertEquals(p2, doc.getBodyElements().get(1));
+ assertEquals(p2, doc.getParagraphs().get(1));
+ assertEquals(p3, doc.getBodyElements().get(2));
+ assertEquals(p3, doc.getParagraphs().get(2));
+
+ // Add another
+ XWPFParagraph p4 = doc.createParagraph();
+
+ assertEquals(4, doc.getParagraphs().size());
+ assertEquals(4, doc.getBodyElements().size());
+ assertEquals(p1, doc.getBodyElements().get(0));
+ assertEquals(p1, doc.getParagraphs().get(0));
+ assertEquals(p2, doc.getBodyElements().get(1));
+ assertEquals(p2, doc.getParagraphs().get(1));
+ assertEquals(p3, doc.getBodyElements().get(2));
+ assertEquals(p3, doc.getParagraphs().get(2));
+ assertEquals(p4, doc.getBodyElements().get(3));
+ assertEquals(p4, doc.getParagraphs().get(3));
+
+ // Remove the 2nd
+ assertEquals(true, doc.removeBodyElement(1));
+ assertEquals(3, doc.getParagraphs().size());
+ assertEquals(3, doc.getBodyElements().size());
+
+ assertEquals(p1, doc.getBodyElements().get(0));
+ assertEquals(p1, doc.getParagraphs().get(0));
+ assertEquals(p3, doc.getBodyElements().get(1));
+ assertEquals(p3, doc.getParagraphs().get(1));
+ assertEquals(p4, doc.getBodyElements().get(2));
+ assertEquals(p4, doc.getParagraphs().get(2));
+
+ // Remove the 1st
+ assertEquals(true, doc.removeBodyElement(0));
+ assertEquals(2, doc.getParagraphs().size());
+ assertEquals(2, doc.getBodyElements().size());
+
+ assertEquals(p3, doc.getBodyElements().get(0));
+ assertEquals(p3, doc.getParagraphs().get(0));
+ assertEquals(p4, doc.getBodyElements().get(1));
+ assertEquals(p4, doc.getParagraphs().get(1));
+
+ // Remove the last
+ assertEquals(true, doc.removeBodyElement(1));
+ assertEquals(1, doc.getParagraphs().size());
+ assertEquals(1, doc.getBodyElements().size());
+
+ assertEquals(p3, doc.getBodyElements().get(0));
+ assertEquals(p3, doc.getParagraphs().get(0));
+ }
}