]> source.dussan.org Git - poi.git/commitdiff
Fix 1.6-isms from the patch from bug #48574
authorNick Burch <nick@apache.org>
Fri, 11 Jun 2010 14:46:29 +0000 (14:46 +0000)
committerNick Burch <nick@apache.org>
Fri, 11 Jun 2010 14:46:29 +0000 (14:46 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@953707 13f79535-47bb-0310-9956-ffa450edef68

src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFDocument.java
src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFFooter.java
src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFHeader.java
src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFHeaderFooter.java
src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFParagraph.java
src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFTable.java
src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFTableCell.java

index d7a7851963d94b8280cba3cf1e213d66b3b85cd6..a7adc3356f6d64a5b0b1472382a413422c532d87 100644 (file)
@@ -304,7 +304,6 @@ public class XWPFDocument extends POIXMLDocument implements Document, IBody {
        /**
         * @see org.apache.poi.xwpf.usermodel.IBody#getTableArray(int)
         */
-       @Override
        public XWPFTable getTableArray(int pos) {
                if(pos > 0 && pos < tables.size()){
                        return tables.get(pos);
@@ -942,7 +941,6 @@ public class XWPFDocument extends POIXMLDocument implements Document, IBody {
         * @param i
         * @param table
         */
-       @Override
        public void insertTable(int pos, XWPFTable table) {
                bodyElements.add(pos, table);
                int i;
@@ -1163,7 +1161,6 @@ public class XWPFDocument extends POIXMLDocument implements Document, IBody {
         * Returns the paragraph that of position pos
         * @see org.apache.poi.xwpf.usermodel.IBody#getParagraphArray(int)
         */
-       @Override
        public XWPFParagraph getParagraphArray(int pos) {
                if(pos > 0 && pos < paragraphs.size()){         
                        return paragraphs.get(pos);
@@ -1179,7 +1176,6 @@ public class XWPFDocument extends POIXMLDocument implements Document, IBody {
         * belongs.
         * @see org.apache.poi.xwpf.usermodel.IBody#getPart()
         */
-       @Override
        public IBody getPart() {
                return this;
        }
@@ -1190,7 +1186,6 @@ public class XWPFDocument extends POIXMLDocument implements Document, IBody {
         * @return
         * @see org.apache.poi.xwpf.usermodel.IBody#getPartType()
         */
-       @Override
        public BodyType getPartType() {
                return BodyType.DOCUMENT;
        }
@@ -1200,7 +1195,6 @@ public class XWPFDocument extends POIXMLDocument implements Document, IBody {
         * @param o
         * @return
         */
-       @Override
        public XWPFTableCell getTableCell(CTTc cell) {
                XmlCursor cursor = cell.newCursor();
                cursor.toParent();
index 4b95ad1c5b091e0eeb5ffee05785e3110a2b426d..f6aa6b1ee8b833f21d7fe01e923571f80d856630 100644 (file)
@@ -138,7 +138,6 @@ public class XWPFFooter extends XWPFHeaderFooter {
                 * returns the Part, to which the body belongs, which you need for adding relationship to other parts
                 * @see org.apache.poi.xwpf.usermodel.IBody#getPart()
                 */
-               @Override
                public IBody getPart() {
                        return this;
                }
@@ -147,7 +146,6 @@ public class XWPFFooter extends XWPFHeaderFooter {
                 * get the PartType of the body
                 * @see org.apache.poi.xwpf.usermodel.IBody#getPartType()
                 */
-               @Override
                public BodyType getPartType() {
                        return BodyType.FOOTER;
                }
index c78dc05e5e2116d0732c659d8acdb6c773b24954..0af3564629e01a151740110712a6d4ec0a88e218 100644 (file)
@@ -147,7 +147,6 @@ public class XWPFHeader extends XWPFHeaderFooter {
         * returns the Part, to which the body belongs, which you need for adding relationship to other parts
         * @see org.apache.poi.xwpf.usermodel.IBody#getPart()
         */
-       @Override
        public IBody getPart() {
                return this;
        }
@@ -156,7 +155,6 @@ public class XWPFHeader extends XWPFHeaderFooter {
         * get the PartType of the body
         * @see org.apache.poi.xwpf.usermodel.IBody#getPartType()
         */
-       @Override
        public BodyType getPartType() {
                return BodyType.HEADER;
        }
index 2b11d733a7f5565e37eecd6eac7780484f3d04cd..af870718eb93ee4f9e6f72382bef7049ccbf04bd 100644 (file)
@@ -441,7 +441,6 @@ public abstract class XWPFHeaderFooter extends POIXMLDocumentPart implements IBo
         * Returns the table at position pos
         * @see org.apache.poi.xwpf.usermodel.IBody#getTableArray(int)
         */
-       @Override
        public XWPFTable getTableArray(int pos) {
        
                if(pos > 0 && pos < tables.size()){
@@ -455,7 +454,6 @@ public abstract class XWPFHeaderFooter extends POIXMLDocumentPart implements IBo
         * @param i
         * @param table
         */
-       @Override
        public void insertTable(int pos, XWPFTable table) {
                bodyElements.add(pos, table);
                int i;
index 1e2fd408f4adc0afe5f71a4b36b5654c60e29231..6aabadef95f5308f9dd9ba122a56d193cf83d909 100644 (file)
@@ -1278,7 +1278,6 @@ public class XWPFParagraph implements IBodyElement{
         * returns the type of the BodyElement Paragraph
         * @see org.apache.poi.xwpf.usermodel.IBodyElement#getElementType()
         */
-       @Override
        public BodyElementType getElementType() {
                return BodyElementType.PARAGRAPH;
        }
@@ -1287,7 +1286,6 @@ public class XWPFParagraph implements IBodyElement{
         * returns the part of the bodyElement
         * @see org.apache.poi.xwpf.usermodel.IBody#getPart()
         */
-       @Override
        public IBody getPart() {
                if(part != null){
                        return part.getPart();
@@ -1299,7 +1297,6 @@ public class XWPFParagraph implements IBodyElement{
         * returns the partType of the bodyPart which owns the bodyElement
         * @see org.apache.poi.xwpf.usermodel.IBody#getPartType()
         */
-       @Override
        public BodyType getPartType() {
                return part.getPartType();
        }
index b12cce2c129426891915cc13cc815bb0513f6d0d..429eb623b3da0dede31a833ca7d957d5665d16e3 100644 (file)
@@ -291,7 +291,6 @@ public class XWPFTable implements IBodyElement{
         * returns the type of the BodyElement Table
         * @see org.apache.poi.xwpf.usermodel.IBodyElement#getElementType()
         */
-       @Override
        public BodyElementType getElementType() {
                return BodyElementType.TABLE;
        }
@@ -301,7 +300,6 @@ public class XWPFTable implements IBodyElement{
         * returns the part of the bodyElement
         * @see org.apache.poi.xwpf.usermodel.IBody#getPart()
         */
-       @Override
        public IBody getPart() {
                if(part != null){
                        return part.getPart();
@@ -314,7 +312,6 @@ public class XWPFTable implements IBodyElement{
         * returns the partType of the bodyPart which owns the bodyElement
         * @see org.apache.poi.xwpf.usermodel.IBody#getPartType()
         */
-       @Override
        public BodyType getPartType() {
                return ((IBody)part).getPartType();
        }
index f6b3659389a8147b76e41e1057524f8af16095ad..3e317cca638ff7f75d06abc138abc7212bd9e14e 100644 (file)
@@ -114,7 +114,6 @@ public class XWPFTableCell implements IBody {
         * @return null if there is no XWPFParagraph with an corresponding CTPparagraph in the paragraphList of this table
         *                 XWPFParagraph with the correspondig CTP p
         */
-       @Override
     public XWPFParagraph getParagraph(CTP p){
        for (XWPFParagraph paragraph : paragraphs) {
                        if(p.equals(paragraph.getCTP())){
@@ -232,7 +231,6 @@ public class XWPFTableCell implements IBody {
        /**
         * @see org.apache.poi.xwpf.usermodel.IBody#getParagraphArray(int)
         */
-       @Override
        public XWPFParagraph getParagraphArray(int pos) {
                if(pos > 0 && pos < paragraphs.size()){
                        return paragraphs.get(pos);
@@ -247,7 +245,6 @@ public class XWPFTableCell implements IBody {
         * get the to which the TableCell belongs 
         * @see org.apache.poi.xwpf.usermodel.IBody#getPart()
         */
-       @Override
        public IBody getPart() {
                return (IBody) tableRow.getTable().getPart();
        }
@@ -256,7 +253,6 @@ public class XWPFTableCell implements IBody {
        /** 
         * @see org.apache.poi.xwpf.usermodel.IBody#getPartType()
         */
-       @Override
        public BodyType getPartType() {
                return BodyType.TABLECELL;
        }
@@ -266,7 +262,6 @@ public class XWPFTableCell implements IBody {
         * get a table by its CTTbl-Object
         * @see org.apache.poi.xwpf.usermodel.IBody#getTable(org.openxmlformats.schemas.wordprocessingml.x2006.main.CTTbl)
         */
-       @Override
        public XWPFTable getTable(CTTbl ctTable) {
                for(int i=0; i<tables.size(); i++){
                        if(getTables().get(i).getCTTbl() == ctTable) return getTables().get(i); 
@@ -278,7 +273,6 @@ public class XWPFTableCell implements IBody {
        /** 
         * @see org.apache.poi.xwpf.usermodel.IBodyPart#getTableArray(int)
         */
-       @Override
        public XWPFTable getTableArray(int pos) {
                if(pos > 0 && pos < tables.size()){
                        return tables.get(pos);
@@ -290,7 +284,6 @@ public class XWPFTableCell implements IBody {
        /** 
         * @see org.apache.poi.xwpf.usermodel.IBodyPart#getTables()
         */
-       @Override
        public List<XWPFTable> getTables() {
                return Collections.unmodifiableList(tables);
        }
@@ -300,7 +293,6 @@ public class XWPFTableCell implements IBody {
         * inserts an existing XWPFTable to the arrays bodyElements and tables
         * @see org.apache.poi.xwpf.usermodel.IBody#insertTable(int, org.apache.poi.xwpf.usermodel.XWPFTable)
         */
-       @Override
        public void insertTable(int pos, XWPFTable table) {
                bodyElements.add(pos, table);
                int i;
@@ -327,7 +319,6 @@ public class XWPFTableCell implements IBody {
         * @param o
         * @return
         */
-       @Override
        public XWPFTableCell getTableCell(CTTc cell) {
                XmlCursor cursor = cell.newCursor();
                cursor.toParent();