]> source.dussan.org Git - poi.git/commitdiff
remove unnecessary @SuppressWarnings("deprecation") warnings (because of old xml...
authorAndreas Beeker <kiwiwings@apache.org>
Fri, 1 Jan 2016 00:45:05 +0000 (00:45 +0000)
committerAndreas Beeker <kiwiwings@apache.org>
Fri, 1 Jan 2016 00:45:05 +0000 (00:45 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1722480 13f79535-47bb-0310-9956-ffa450edef68

48 files changed:
src/ooxml/java/org/apache/poi/POIXMLProperties.java
src/ooxml/java/org/apache/poi/xslf/extractor/XSLFPowerPointExtractor.java
src/ooxml/java/org/apache/poi/xslf/usermodel/DrawingTable.java
src/ooxml/java/org/apache/poi/xslf/usermodel/DrawingTableRow.java
src/ooxml/java/org/apache/poi/xslf/usermodel/DrawingTextBody.java
src/ooxml/java/org/apache/poi/xslf/usermodel/XMLSlideShow.java
src/ooxml/java/org/apache/poi/xslf/usermodel/XSLFCommentAuthors.java
src/ooxml/java/org/apache/poi/xslf/usermodel/XSLFCommonSlideData.java
src/ooxml/java/org/apache/poi/xslf/usermodel/XSLFFreeformShape.java
src/ooxml/java/org/apache/poi/xslf/usermodel/XSLFSlideShow.java
src/ooxml/java/org/apache/poi/xslf/usermodel/XSLFTableRow.java
src/ooxml/java/org/apache/poi/xslf/usermodel/XSLFTableStyles.java
src/ooxml/java/org/apache/poi/xslf/usermodel/XSLFTextParagraph.java
src/ooxml/java/org/apache/poi/xssf/eventusermodel/XSSFSheetXMLHandler.java
src/ooxml/java/org/apache/poi/xssf/model/CalculationChain.java
src/ooxml/java/org/apache/poi/xssf/model/CommentsTable.java
src/ooxml/java/org/apache/poi/xssf/model/ExternalLinksTable.java
src/ooxml/java/org/apache/poi/xssf/model/MapInfo.java
src/ooxml/java/org/apache/poi/xssf/model/SharedStringsTable.java
src/ooxml/java/org/apache/poi/xssf/model/SingleXmlCells.java
src/ooxml/java/org/apache/poi/xssf/model/StylesTable.java
src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFChart.java
src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFColorScaleFormatting.java
src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFIconMultiStateFormatting.java
src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFPivotTable.java
src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFRichTextString.java
src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFRow.java
src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFSheet.java
src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFSheetConditionalFormatting.java
src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFTable.java
src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFWorkbook.java
src/ooxml/java/org/apache/poi/xssf/usermodel/helpers/ColumnHelper.java
src/ooxml/java/org/apache/poi/xssf/usermodel/helpers/XSSFRowShifter.java
src/ooxml/java/org/apache/poi/xwpf/model/XWPFCommentsDecorator.java
src/ooxml/java/org/apache/poi/xwpf/usermodel/AbstractXWPFSDT.java
src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFComment.java
src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFDocument.java
src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFFootnote.java
src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFFootnotes.java
src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFHeaderFooter.java
src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFLatentStyles.java
src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFNumbering.java
src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFParagraph.java
src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFRun.java
src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFStyles.java
src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFTable.java
src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFTableCell.java
src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFTableRow.java

index 48ce99fce19a25523d4a0e7b8670b9242628e7b9..3be94d29d426a8204757c07e712ac1c70b15dc76 100644 (file)
@@ -469,8 +469,7 @@ public class POIXMLProperties {
                 *
                 * @return next property id starting with 2
                 */
-               @SuppressWarnings("deprecation")
-        protected int nextPid(){
+        protected int nextPid() {
                        int propid = 1;
                        for(CTProperty p : props.getProperties().getPropertyArray()){
                                if(p.getPid() > propid) propid = p.getPid();
@@ -484,7 +483,6 @@ public class POIXMLProperties {
          * @param name the name to check
          * @return whether a property with the given name exists in the custom properties
          */
-        @SuppressWarnings("deprecation")
         public boolean contains(String name) {
             for(CTProperty p : props.getProperties().getPropertyArray()){
                 if(p.getName().equals(name)) return true;
@@ -501,7 +499,6 @@ public class POIXMLProperties {
          *
          * @param name the name of the property to fetch
          */
-        @SuppressWarnings("deprecation")
         public CTProperty getProperty(String name) {
             for(CTProperty p : props.getProperties().getPropertyArray()){
                 if(p.getName().equals(name)) {
index cad527032f5e26dbafb2940273e2e47169efd2f2..ddcbfff2c9d60ad2964c8dd3218b38c08051ffc2 100644 (file)
@@ -119,7 +119,6 @@ public class XSLFPowerPointExtractor extends POIXMLTextExtractor {
     * @param notesText Should we retrieve text from notes?
     * @param masterText Should we retrieve text from master slides?
     */
-   @SuppressWarnings("deprecation")
    public String getText(boolean slideText, boolean notesText, boolean masterText) {
       StringBuffer text = new StringBuffer();
 
index 2cc7724c79bcd1a624b4356523da76375d623a9b..037ae65d9216be4eb59824da4fad9bfd50a4b6fb 100644 (file)
@@ -27,7 +27,6 @@ public class DrawingTable {
         this.table = table;
     }
 
-    @SuppressWarnings("deprecation")
     public DrawingTableRow[] getRows() {
         CTTableRow[] ctTableRows = table.getTrArray();
         DrawingTableRow[] o = new DrawingTableRow[ctTableRows.length];
index 0858d2be8ef8d1df71ff158b74403945eb6e9ad1..70aa159a93b04e8037dbf3ac07fdb3e767418b0a 100644 (file)
@@ -27,7 +27,6 @@ public class DrawingTableRow {
         this.row = row;
     }
 
-    @SuppressWarnings("deprecation")
     public DrawingTableCell[] getCells() {
         CTTableCell[] ctTableCells = row.getTcArray();
         DrawingTableCell[] o = new DrawingTableCell[ctTableCells.length];
index 88171f38eb54de576d89d9669ac2f53789c87334..c3f7778b815273fa34c8ce3a33b9e54377f6a392 100644 (file)
@@ -27,7 +27,6 @@ public class DrawingTextBody {
        this.textBody = textBody;
     }
 
-    @SuppressWarnings("deprecation")
     public DrawingParagraph[] getParagraphs() {
         CTTextParagraph[] paragraphs = textBody.getPArray();
         DrawingParagraph[] o = new DrawingParagraph[paragraphs.length];
index 1cc257c51de2659c0397a91d7cfc06df26be7b21..34b5bed19af36197caabdaf4cff6d699d68e2add 100644 (file)
@@ -206,7 +206,6 @@ implements SlideShow<XSLFShape,XSLFTextParagraph> {
      * @param layout
      * @return created slide
      */
-    @SuppressWarnings("deprecation")
     public XSLFSlide createSlide(XSLFSlideLayout layout) {
         int slideNumber = 256, cnt = 1;
         CTSlideIdList slideList;
@@ -369,7 +368,6 @@ implements SlideShow<XSLFShape,XSLFTextParagraph> {
      *
      * @param newIndex 0-based index of the slide
      */
-    @SuppressWarnings("deprecation")
     public void setSlideOrder(XSLFSlide slide, int newIndex){
         int oldIndex = _slides.indexOf(slide);
         if(oldIndex == -1) throw new IllegalArgumentException("Slide not found");
index 1fe05a48cf6e338b6d01a26dac8b42b1ae60eb87..dcbc78076e0bb31423984aaf5aceecd4cfd8c193 100644 (file)
@@ -63,7 +63,6 @@ public class XSLFCommentAuthors extends POIXMLDocumentPart {
        return _authors;
     }
     
-    @SuppressWarnings("deprecation")
     public CTCommentAuthor getAuthorById(long id) {
        // TODO Have a map
        for (CTCommentAuthor author : _authors.getCmAuthorArray()) {
index 34d4e0031a78b196d371f25d36c28eeaa4ff5111..15a62a833de6593ec6a995c04f4f40e022b67c85 100644 (file)
@@ -46,7 +46,6 @@ public class XSLFCommonSlideData {
         this.data = data;
     }
     
-    @SuppressWarnings("deprecation")
     public List<DrawingTextBody> getDrawingText() {
         CTGroupShape gs = data.getSpTree();
 
@@ -100,7 +99,6 @@ public class XSLFCommonSlideData {
        return paragraphs;
     }
 
-    @SuppressWarnings("deprecation")
     private void processShape(CTGroupShape gs, List<DrawingTextBody> out) {
         for (CTShape shape : gs.getSpArray()) {
             CTTextBody ctTextBody = shape.getTxBody();
index 1f23523938144c7cd8be0a1eedecb87e547876ef..f75ffa8ed4aefacbd55d7f79d5fa588ec6200506 100644 (file)
@@ -119,7 +119,6 @@ public class XSLFFreeformShape extends XSLFAutoShape
     }\r
 \r
     @Override\r
-    @SuppressWarnings("deprecation")\r
     public GeneralPath getPath() {\r
         GeneralPath path = new GeneralPath();\r
         Rectangle2D bounds = getAnchor();\r
index 8c69bbfa996e0a5bc921ac7b2092919da50b1e46..a91e451f8910bdb4cc1a2becdf8ac4194fc1f8b1 100644 (file)
@@ -66,7 +66,6 @@ public class XSLFSlideShow extends POIXMLDocument {
         */
        private List<PackagePart> embedds;
 
-       @SuppressWarnings("deprecation")
        public XSLFSlideShow(OPCPackage container) throws OpenXML4JException, IOException, XmlException {
                super(container);
 
index 04e9742aa3ec0adb3c785ef4f1f7c8f475dbc301..491583f5aa29e70f5e78b31188051146f93b59c9 100644 (file)
@@ -38,7 +38,6 @@ public class XSLFTableRow implements Iterable<XSLFTableCell> {
     private List<XSLFTableCell> _cells;\r
     private XSLFTable _table;\r
 \r
-    @SuppressWarnings("deprecation")\r
     /*package*/ XSLFTableRow(CTTableRow row, XSLFTable table){\r
         _row = row;\r
         _table = table;\r
index 02532dbf1c03704f8fda8fe5b790d3392bc2fa11..fce35efb59ab14de255bd78e8a7188b53cacb7e9 100644 (file)
@@ -41,7 +41,6 @@ public class XSLFTableStyles extends POIXMLDocumentPart implements Iterable<XSLF
         super();
     }
 
-    @SuppressWarnings("deprecation")
     public XSLFTableStyles(PackagePart part, PackageRelationship rel) throws IOException, XmlException {
         super(part, rel);
 
index 3172c162cdf0075da4489bdbb0ce8d5266f5adba..5abb098375bbf5a57bb4f2af5c9464a0deb25fb5 100644 (file)
@@ -819,7 +819,6 @@ public class XSLFTextParagraph implements TextParagraph<XSLFShape,XSLFTextParagr
         return false;\r
     }\r
 \r
-    @SuppressWarnings("deprecation")\r
     void copy(XSLFTextParagraph other){\r
         if (other == this) return;\r
         \r
index 39a852eb79f0362aac813ab425899a581498e8cc..9ff2238578ee76e80cc6b7add9925242b5bdbd9c 100644 (file)
@@ -160,7 +160,6 @@ public class XSSFSheetXMLHandler extends DefaultHandler {
        this(styles, strings, sheetContentsHandler, new DataFormatter(), formulasNotResults);
    }
    
-   @SuppressWarnings("deprecation")
    private void init() {
        if (commentsTable != null) {
            commentCellRefs = new LinkedList<CellAddress>();
index 13133f4fb1ab8ae1770703ec2a4e9755da0f6d86..31e9825126bb06ec21ef65514c162c436f2d867e 100644 (file)
@@ -82,7 +82,6 @@ public class CalculationChain extends POIXMLDocumentPart {
      * @param sheetId  the sheet Id of a sheet the formula belongs to.
      * @param ref  A1 style reference to the cell containing the formula.
      */
-    @SuppressWarnings("deprecation") //  getXYZArray() array accessors are deprecated 
     public void removeItem(int sheetId, String ref){
         //sheet Id of a sheet the cell belongs to
         int id = -1;
index 5743ac2fc659f9a5d7ff87718982b8d0812bc76e..56bc44c72a42da1eeed9f552679e117f87b4e1f1 100644 (file)
@@ -122,7 +122,6 @@ public class CommentsTable extends POIXMLDocumentPart {
     }
 
     public int findAuthor(String author) {
-        @SuppressWarnings("deprecation")
         String[] authorArray = comments.getAuthors().getAuthorArray();
         for (int i = 0 ; i < authorArray.length; i++) {
             if (authorArray[i].equals(author)) {
@@ -203,7 +202,6 @@ public class CommentsTable extends POIXMLDocumentPart {
      * Calls that use the commentRefs cache will perform in O(1)
      * time rather than O(n) lookup time for List<CTComment> comments.
      */
-    @SuppressWarnings("deprecation") //YK: getXYZArray) array accessors are deprecated in xmlbeans with JDK 1.5 support
     private void prepareCTCommentCache() {
         // Create the cache if needed
         if(commentRefs == null) {
@@ -265,7 +263,6 @@ public class CommentsTable extends POIXMLDocumentPart {
         final String stringRef = cellRef.formatAsString();
         CTCommentList lst = comments.getCommentList();
         if(lst != null) {
-            @SuppressWarnings("deprecation") //YK: getXYZArray() array accessors are deprecated in xmlbeans with JDK 1.5 support
             CTComment[] commentArray = lst.getCommentArray();
             for (int i = 0; i < commentArray.length; i++) {
                 CTComment comment = commentArray[i];
index 42fce1159766cb8583b6fb6ed599b4876fc02b6e..18b63025c880120a68f579285d63a2bb28c7fbaf 100644 (file)
@@ -116,7 +116,6 @@ public class ExternalLinksTable extends POIXMLDocumentPart {
         link.getExternalBook().setId(newRel.getId());
     }
 
-    @SuppressWarnings("deprecation")
     public List<String> getSheetNames() {
         CTExternalSheetName[] sheetNames = 
                 link.getExternalBook().getSheetNames().getSheetNameArray();
@@ -127,7 +126,6 @@ public class ExternalLinksTable extends POIXMLDocumentPart {
         return names;
     }
     
-    @SuppressWarnings("deprecation")
     public List<Name> getDefinedNames() {
         CTExternalDefinedName[] extNames = 
                 link.getExternalBook().getDefinedNames().getDefinedNameArray();
index c8032e6021b4de3d1da49a969a7711fd1b53ba4c..874ef980511beca04788b2f9c410397f9bae0ae4 100644 (file)
@@ -67,7 +67,6 @@ public class MapInfo extends POIXMLDocumentPart {
                readFrom(part.getInputStream());
        }
 
-    @SuppressWarnings("deprecation")
        public void readFrom(InputStream is) throws IOException {
                try {
                        MapInfoDocument doc = MapInfoDocument.Factory.parse(is, DEFAULT_XML_OPTIONS);
@@ -106,7 +105,6 @@ public class MapInfo extends POIXMLDocumentPart {
         * @param schemaId the schema ID
         * @return CTSchema by it's ID
         */
-    @SuppressWarnings("deprecation")
        public CTSchema getCTSchemaById(String schemaId){
                CTSchema xmlSchema = null;
 
index 96a8ce89f243735c18615c546fa9c2038f52a16d..17b61a1c0163aa859fb40b2a6b39f3091785b3e1 100644 (file)
@@ -114,7 +114,6 @@ public class SharedStringsTable extends POIXMLDocumentPart {
      * @param is The input stream containing the XML document.
      * @throws IOException if an error occurs while reading.
      */
-    @SuppressWarnings("deprecation") //YK: getXYZArray() array accessors are deprecated in xmlbeans with JDK 1.5 support
     public void readFrom(InputStream is) throws IOException {
         try {
             int cnt = 0;
index 953bad409cf56f268dfeaaef0e9dc50d42b8f7e2..77b96d85e70c82352d427c2cd05baf34fb6a4601 100644 (file)
@@ -96,7 +96,6 @@ public class SingleXmlCells extends POIXMLDocumentPart {
         * 
         * @return all the SimpleXmlCell contained in this SingleXmlCells element
         */
-    @SuppressWarnings("deprecation")
        public List<XSSFSingleXmlCell> getAllSimpleXmlCell(){
                List<XSSFSingleXmlCell> list = new Vector<XSSFSingleXmlCell>();
                
index ca9be39b9d86322664deba67fddbd079e7ce3f2b..9b98e1e5eec08243d2896977e1f015f236ccd977 100644 (file)
@@ -187,7 +187,6 @@ public class StylesTable extends POIXMLDocumentPart {
      * @param is The input stream containing the XML document.
      * @throws IOException if an error occurs while reading.
      */
-    @SuppressWarnings("deprecation") //YK: getXYZArray() array accessors are deprecated in xmlbeans with JDK 1.5 support
     protected void readFrom(InputStream is) throws IOException {
         try {
             doc = StyleSheetDocument.Factory.parse(is, DEFAULT_XML_OPTIONS);
index 3dcb00d3ab1b556c97e07a8685604c1e995785bd..94db41ceecb4e6e090dd42135b666c6d60043fea 100644 (file)
@@ -299,14 +299,12 @@ public final class XSSFChart extends POIXMLDocumentPart implements Chart, ChartA
                parseValueAxis();
        }
 
-    @SuppressWarnings("deprecation")
        private void parseCategoryAxis() {
                for (CTCatAx catAx : chart.getPlotArea().getCatAxArray()) {
                        axis.add(new XSSFCategoryAxis(this, catAx));
                }
        }
 
-    @SuppressWarnings("deprecation")
        private void parseValueAxis() {
                for (CTValAx valAx : chart.getPlotArea().getValAxArray()) {
                        axis.add(new XSSFValueAxis(this, valAx));
index f32feeac3a56ed3a71a1d34113dc31b24fc45e4c..eb15001b0ab7315ad548f04ffaffad491e661db7 100644 (file)
@@ -50,7 +50,6 @@ public class XSSFColorScaleFormatting implements ColorScaleFormatting {
         }\r
     }\r
 \r
-    @SuppressWarnings("deprecation")\r
     public XSSFColor[] getColors() {\r
         CTColor[] ctcols = _scale.getColorArray();\r
         XSSFColor[] c = new XSSFColor[ctcols.length];\r
@@ -67,7 +66,6 @@ public class XSSFColorScaleFormatting implements ColorScaleFormatting {
         _scale.setColorArray(ctcols);\r
     }\r
 \r
-    @SuppressWarnings("deprecation")\r
     public XSSFConditionalFormattingThreshold[] getThresholds() {\r
         CTCfvo[] cfvos = _scale.getCfvoArray();\r
         XSSFConditionalFormattingThreshold[] t = \r
index 81883bb0695e413dbc3f596b322313fc8fdbf6b9..c2e26911af9e0e181258efe2d8f62eea70d6bd42 100644 (file)
@@ -62,7 +62,6 @@ public class XSSFIconMultiStateFormatting implements IconMultiStateFormatting {
         _iconset.setReverse(reversed);\r
     }\r
 \r
-    @SuppressWarnings("deprecation")\r
     public XSSFConditionalFormattingThreshold[] getThresholds() {\r
         CTCfvo[] cfvos = _iconset.getCfvoArray();\r
         XSSFConditionalFormattingThreshold[] t = \r
index cd132c83109a4a8119020a31ec455dde3c4f88a1..bda2ccf6956db02c75b9391bfdec64b574f5d7d5 100644 (file)
@@ -265,7 +265,6 @@ public class XSSFPivotTable extends POIXMLDocumentPart {
     }
     
     @Beta
-    @SuppressWarnings("deprecation")
     public List<Integer> getRowLabelColumns() {
         if (pivotTableDefinition.getRowFields() != null) {
             List<Integer> columnIndexes = new ArrayList<Integer>();
index 70ad23655795c070acc4f1c0e3fcb6930e6aa914..a42708287349f591b9a0d9f95a246eff9d41ff5d 100644 (file)
@@ -253,7 +253,6 @@ public class XSSFRichTextString implements RichTextString {
      *  it just text in the default style?
      */
     public boolean hasFormatting() {
-        @SuppressWarnings("deprecation")
         CTRElt[] rs = st.getRArray();
         if (rs == null || rs.length == 0) {
             return false;
@@ -310,7 +309,6 @@ public class XSSFRichTextString implements RichTextString {
     /**
      * Returns the plain string representation.
      */
-    @SuppressWarnings("deprecation") //YK: getXYZArray() array accessors are deprecated in xmlbeans with JDK 1.5 support
     public String getString() {
         if(st.sizeOfRArray() == 0) {
             return utfDecode(st.getT());
@@ -409,7 +407,6 @@ public class XSSFRichTextString implements RichTextString {
         return st;
     }
 
-    @SuppressWarnings("deprecation") //YK: getXYZArray() array accessors are deprecated in xmlbeans with JDK 1.5 support
     protected void setStylesTableReference(StylesTable tbl){
         styles = tbl;
         if(st.sizeOfRArray() > 0) {
@@ -558,7 +555,6 @@ public class XSSFRichTextString implements RichTextString {
             while(sub.size() > 1) sub.remove(sub.lastKey());
         }
 
-    @SuppressWarnings("deprecation")
     TreeMap<Integer, CTRPrElt> getFormatMap(CTRst entry){
         int length = 0;
         TreeMap<Integer, CTRPrElt> formats = new TreeMap<Integer, CTRPrElt>();
@@ -577,11 +573,11 @@ public class XSSFRichTextString implements RichTextString {
             throw new IllegalArgumentException("Text length was " + text.length() +
                     " but the last format index was " + formats.lastKey());
         }
-        CTRst st = CTRst.Factory.newInstance();
+        CTRst stf = CTRst.Factory.newInstance();
         int runStartIdx = 0;
         for (Iterator<Integer> it = formats.keySet().iterator(); it.hasNext();) {
             int runEndIdx = it.next();
-            CTRElt run = st.addNewR();
+            CTRElt run = stf.addNewR();
             String fragment = text.substring(runStartIdx, runEndIdx);
             run.setT(fragment);
             preserveSpaces(run.xgetT());
@@ -589,7 +585,7 @@ public class XSSFRichTextString implements RichTextString {
             if(fmt != null) run.setRPr(fmt);
             runStartIdx = runEndIdx;
         }
-        return st;
+        return stf;
     }
     
     private ThemesTable getThemesTable() {
index 14680572e3775f4cdf087a42b91f481a683e2b0e..5c8b385b76e16d0ba0f80911e694f8bfc1a9fa03 100644 (file)
@@ -66,7 +66,6 @@ public class XSSFRow implements Row, Comparable<XSSFRow> {
      * @param row the xml bean containing all cell definitions for this row.
      * @param sheet the parent sheet.
      */
-    @SuppressWarnings("deprecation") //YK: getXYZArray() array accessors are deprecated in xmlbeans with JDK 1.5 support
     protected XSSFRow(CTRow row, XSSFSheet sheet) {
         _row = row;
         _sheet = sheet;
@@ -474,7 +473,6 @@ public class XSSFRow implements Row, Comparable<XSSFRow> {
      *
      * @see org.apache.poi.xssf.usermodel.XSSFSheet#write(java.io.OutputStream) ()
      */
-    @SuppressWarnings("deprecation")
     protected void onDocumentWrite(){
         // check if cells in the CTRow are ordered
         boolean isOrdered = true;
index d1a652bb97348ab58d4e04817f2c80551815d733..940be262d0493188a1dc5db790b5c1e0e7395a14 100644 (file)
@@ -231,7 +231,6 @@ public class XSSFSheet extends POIXMLDocumentPart implements Sheet {
         hyperlinks = new ArrayList<XSSFHyperlink>();
     }
 
-    @SuppressWarnings("deprecation") //YK: getXYZArray() array accessors are deprecated in xmlbeans with JDK 1.5 support
     private void initRows(CTWorksheet worksheetParam) {
         _rows = new TreeMap<Integer, XSSFRow>();
         tables = new TreeMap<String, XSSFTable>();
@@ -247,7 +246,6 @@ public class XSSFSheet extends POIXMLDocumentPart implements Sheet {
      * Read hyperlink relations, link them with CTHyperlink beans in this worksheet
      * and initialize the internal array of XSSFHyperlink objects
      */
-    @SuppressWarnings("deprecation") //YK: getXYZArray() array accessors are deprecated in xmlbeans with JDK 1.5 support
     private void initHyperlinks() {
         hyperlinks = new ArrayList<XSSFHyperlink>();
 
@@ -744,7 +742,6 @@ public class XSSFSheet extends POIXMLDocumentPart implements Sheet {
         return Collections.unmodifiableList(hyperlinks);
     }
 
-    @SuppressWarnings("deprecation")
     private int[] getBreaks(CTPageBreak ctPageBreak) {
         CTBreak[] brkArray = ctPageBreak.getBrkArray();
         int[] breaks = new int[brkArray.length];
@@ -754,7 +751,6 @@ public class XSSFSheet extends POIXMLDocumentPart implements Sheet {
         return breaks;
     }
 
-    @SuppressWarnings("deprecation")
     private void removeBreak(int index, CTPageBreak ctPageBreak) {
         int index1 = index + 1;
         CTBreak[] brkArray = ctPageBreak.getBrkArray();
@@ -1173,7 +1169,6 @@ public class XSSFSheet extends POIXMLDocumentPart implements Sheet {
      *
      * @return the list of merged regions
      */
-    @SuppressWarnings("deprecation")
     @Override
     public List<CellRangeAddress> getMergedRegions() {
         List<CellRangeAddress> addresses = new ArrayList<CellRangeAddress>();
@@ -1512,7 +1507,6 @@ public class XSSFSheet extends POIXMLDocumentPart implements Sheet {
     /**
      * Do not leave the width attribute undefined (see #52186).
      */
-    @SuppressWarnings("deprecation")
     private void setColWidthAttribute(CTCols ctCols) {
         for (CTCol col : ctCols.getColArray()) {
             if (!col.isSetWidth()) {
@@ -1550,8 +1544,6 @@ public class XSSFSheet extends POIXMLDocumentPart implements Sheet {
         return (short) outlineLevel;
     }
 
-
-    @SuppressWarnings("deprecation")
     private short getMaxOutlineLevelCols() {
         CTCols ctCols = worksheet.getColsArray(0);
         int outlineLevel = 0;
@@ -1761,7 +1753,6 @@ public class XSSFSheet extends POIXMLDocumentPart implements Sheet {
      *
      * @param indices A set of the regions to unmerge
      */
-    @SuppressWarnings("deprecation")
     public void removeMergedRegions(Collection<Integer> indices) {
         if (!worksheet.isSetMergeCells()) return;
         
@@ -1959,7 +1950,6 @@ public class XSSFSheet extends POIXMLDocumentPart implements Sheet {
 
     }
 
-    @SuppressWarnings("deprecation")
     private void setColumn(int targetColumnIx, Integer style,
                            Integer level, Boolean hidden, Boolean collapsed) {
         CTCols cols = worksheet.getColsArray(0);
@@ -2055,7 +2045,6 @@ public class XSSFSheet extends POIXMLDocumentPart implements Sheet {
      *                the col info index of the start of the outline group
      * @return the column index of the last column in the outline group
      */
-    @SuppressWarnings("deprecation")
     private int setGroupHidden(int pIdx, int level, boolean hidden) {
         CTCols cols = worksheet.getColsArray(0);
         int idx = pIdx;
@@ -2084,7 +2073,6 @@ public class XSSFSheet extends POIXMLDocumentPart implements Sheet {
         return col.getMax() == other_col.getMin() - 1;
     }
 
-    @SuppressWarnings("deprecation")
     private int findStartOfColumnOutlineGroup(int pIdx) {
         // Find the start of the group.
         CTCols cols = worksheet.getColsArray(0);
@@ -2106,7 +2094,6 @@ public class XSSFSheet extends POIXMLDocumentPart implements Sheet {
         return idx;
     }
 
-    @SuppressWarnings("deprecation")
     private int findEndOfColumnOutlineGroup(int colInfoIndex) {
         CTCols cols = worksheet.getColsArray(0);
         // Find the end of the group.
@@ -2129,7 +2116,6 @@ public class XSSFSheet extends POIXMLDocumentPart implements Sheet {
         return idx;
     }
 
-    @SuppressWarnings("deprecation")
     private void expandColumn(int columnIndex) {
         CTCols cols = worksheet.getColsArray(0);
         CTCol col = columnHelper.getColumn(columnIndex, false);
@@ -2184,7 +2170,6 @@ public class XSSFSheet extends POIXMLDocumentPart implements Sheet {
                 Boolean.FALSE, Boolean.FALSE);
     }
 
-    @SuppressWarnings("deprecation")
     private boolean isColumnGroupHiddenByParent(int idx) {
         CTCols cols = worksheet.getColsArray(0);
         // Look out outline details of end
@@ -2218,7 +2203,6 @@ public class XSSFSheet extends POIXMLDocumentPart implements Sheet {
         return startHidden;
     }
 
-    @SuppressWarnings("deprecation")
     private int findColInfoIdx(int columnValue, int fromColInfoIdx) {
         CTCols cols = worksheet.getColsArray(0);
 
@@ -2258,7 +2242,6 @@ public class XSSFSheet extends POIXMLDocumentPart implements Sheet {
      * @param idx
      * @return a boolean represented if the column is collapsed
      */
-    @SuppressWarnings("deprecation")
     private boolean isColumnGroupCollapsed(int idx) {
         CTCols cols = worksheet.getColsArray(0);
         CTCol[] colArray = cols.getColArray();
@@ -2800,7 +2783,6 @@ public class XSSFSheet extends POIXMLDocumentPart implements Sheet {
      * @param resetOriginalRowHeight whether to set the original row's height to the default
      */
     @Override
-    @SuppressWarnings("deprecation") //YK: getXYZArray() array accessors are deprecated in xmlbeans with JDK 1.5 support
     public void shiftRows(int startRow, int endRow, final int n, boolean copyRowHeight, boolean resetOriginalRowHeight) {
         XSSFVMLDrawing vml = getVMLDrawing(false);
 
@@ -3066,7 +3048,6 @@ public class XSSFSheet extends POIXMLDocumentPart implements Sheet {
      * @param value <code>true</code> if this sheet is selected
      */
     @Override
-    @SuppressWarnings("deprecation") //YK: getXYZArray() array accessors are deprecated in xmlbeans with JDK 1.5 support
     public void setSelected(boolean value) {
         CTSheetViews views = getSheetTypeSheetViews();
         for (CTSheetView view : views.getSheetViewArray()) {
@@ -3674,7 +3655,6 @@ public class XSSFSheet extends POIXMLDocumentPart implements Sheet {
         return dataValidationHelper;
     }
 
-    @SuppressWarnings("deprecation") //YK: getXYZArray() array accessors are deprecated in xmlbeans with JDK 1.5 support
     public List<XSSFDataValidation> getDataValidations() {
         List<XSSFDataValidation> xssfValidations = new ArrayList<XSSFDataValidation>();
         CTDataValidations dataValidations = this.worksheet.getDataValidations();
index d4d7401ec401009cedd938e9cec108e38dca93f0..82eddd46d8d4eddf2260d775f54489d1f6ebf3b6 100644 (file)
@@ -182,7 +182,6 @@ public class XSSFSheetConditionalFormatting implements SheetConditionalFormattin
         return rule;\r
     }\r
     \r
-    @SuppressWarnings("deprecation")\r
     public int addConditionalFormatting(CellRangeAddress[] regions, ConditionalFormattingRule[] cfRules) {\r
         if (regions == null) {\r
             throw new IllegalArgumentException("regions must not be null");\r
index 8419de6e46253728d0f117dde2233764d7f9bf84..e71a336456b234cd74ad7e6289bdd6dd42cb91fe 100644 (file)
@@ -129,7 +129,6 @@ public class XSSFTable extends POIXMLDocumentPart {
      * 
      * @return the xpath of the table's root element
      */
-    @SuppressWarnings("deprecation")
     public String getCommonXpath() {
         if (commonXPath == null) {
             String[] commonTokens = {};
@@ -167,7 +166,6 @@ public class XSSFTable extends POIXMLDocumentPart {
     }
 
     
-    @SuppressWarnings("deprecation")
     public List<XSSFXmlColumnPr> getXmlColumnPrs() {
         
         if (xmlColumnPr==null) {
@@ -275,7 +273,6 @@ public class XSSFTable extends POIXMLDocumentPart {
      * Headers <em>must</em> be in sync, otherwise Excel will display a
      * "Found unreadable content" message on startup.
      */
-    @SuppressWarnings("deprecation")
     public void updateHeaders(){
         XSSFSheet sheet = (XSSFSheet)getParent();
         CellReference ref = getStartCellReference();
index 95bbff9e12c04187df07f8f923a70b665d09fd8d..ae4fb23ed47a6ce8beddd6d1740b0cf75c418522 100644 (file)
@@ -330,7 +330,6 @@ public class XSSFWorkbook extends POIXMLDocument implements Workbook {
     }
 
     @Override
-    @SuppressWarnings("deprecation") //  getXYZArray() array accessors are deprecated
     protected void onDocumentRead() throws IOException {
         try {
             WorkbookDocument doc = WorkbookDocument.Factory.parse(getPackagePart().getInputStream(), DEFAULT_XML_OPTIONS);
@@ -1330,7 +1329,6 @@ public class XSSFWorkbook extends POIXMLDocument implements Workbook {
      * 'Selected' sheet(s) is a distinct concept.
      */
     @Override
-    @SuppressWarnings("deprecation") //YK: getXYZArray() array accessors are deprecated in xmlbeans with JDK 1.5 support
     public void setActiveSheet(int index) {
 
         validateSheetIndex(index);
@@ -1569,7 +1567,6 @@ public class XSSFWorkbook extends POIXMLDocument implements Workbook {
      * @param pos the position that we want to insert the sheet into (0 based)
      */
     @Override
-    @SuppressWarnings("deprecation")
     public void setSheetOrder(String sheetname, int pos) {
         int idx = getSheetIndex(sheetname);
         sheets.add(pos, sheets.remove(idx));
@@ -1632,7 +1629,6 @@ public class XSSFWorkbook extends POIXMLDocument implements Workbook {
         }
     }
     
-    @SuppressWarnings("deprecation")
     private void reprocessNamedRanges() {
         namedRanges = new ArrayList<XSSFName>();
         if(workbook.isSetDefinedNames()) {
@@ -1710,7 +1706,6 @@ public class XSSFWorkbook extends POIXMLDocument implements Workbook {
      * @param excludeSheetIdx the sheet to exclude from the check or -1 to include all sheets in the check.
      * @return true if the sheet contains the name, false otherwise.
      */
-    @SuppressWarnings("deprecation") //  getXYZArray() array accessors are deprecated
     private boolean containsSheet(String name, int excludeSheetIdx) {
         CTSheet[] ctSheetArray = workbook.getSheets().getSheetArray();
 
index 285ff014a9353771a5219f3dea4a00f3bd9b908d..1e51e5e3f79d00d4424644a82b70816ce121bda9 100644 (file)
@@ -46,7 +46,6 @@ public class ColumnHelper {
         cleanColumns();
     }
     
-    @SuppressWarnings("deprecation")
     public void cleanColumns() {
         TreeSet<CTCol> trackedCols = new TreeSet<CTCol>(CTColComparator.BY_MIN_MAX);
         CTCols newCols = CTCols.Factory.newInstance();
@@ -154,7 +153,6 @@ public class ColumnHelper {
         return new long[] { col.getMin(), col.getMax() };
     }
     
-    @SuppressWarnings("deprecation")
     public static void sortColumns(CTCols newCols) {
         CTCol[] colArray = newCols.getColArray();
         Arrays.sort(colArray, CTColComparator.BY_MIN_MAX);
@@ -187,7 +185,6 @@ public class ColumnHelper {
         // Fetching the array is quicker than working on the new style
         //  list, assuming we need to read many of them (which we often do),
         //  and assuming we're not making many changes (which we're not)
-        @SuppressWarnings("deprecation")
         CTCol[] colArray = cols.getColArray();
 
         for (CTCol col : colArray) {
@@ -241,7 +238,6 @@ public class ColumnHelper {
         return columnExists1Based(cols, index+1);
     }
 
-    @SuppressWarnings("deprecation")
     private boolean columnExists1Based(CTCols cols, long index1) {
         for (CTCol col : cols.getColArray()) {
             if (col.getMin() == index1) {
@@ -313,7 +309,6 @@ public class ColumnHelper {
         return -1;
     }
 
-    @SuppressWarnings("deprecation")
     private boolean columnExists(CTCols cols, long min, long max) {
         for (CTCol col : cols.getColArray()) {
             if (col.getMin() == min && col.getMax() == max) {
@@ -323,7 +318,6 @@ public class ColumnHelper {
         return false;
     }
 
-    @SuppressWarnings("deprecation")
     public int getIndexOfColumn(CTCols cols, CTCol searchCol) {
         int i = 0;
         for (CTCol col : cols.getColArray()) {
index aa8c9cbef7d0276f45e4dbb9daf1c94b0bc88de3..80462ac4c8423887a7599e4105639549f114ef8e 100644 (file)
@@ -126,6 +126,7 @@ public final class XSSFRowShifter {
     /**
      * Updated named ranges
      */
+    @SuppressWarnings("resource")
     public void updateNamedRanges(FormulaShifter shifter) {
         XSSFWorkbook wb = sheet.getWorkbook();
         XSSFEvaluationWorkbook fpb = XSSFEvaluationWorkbook.create(wb);
@@ -145,6 +146,7 @@ public final class XSSFRowShifter {
     /**
      * Update formulas.
      */
+    @SuppressWarnings("resource")
     public void updateFormulas(FormulaShifter shifter) {
         //update formulas on the parent sheet
         updateSheetFormulas(sheet, shifter);
@@ -211,6 +213,7 @@ public final class XSSFRowShifter {
      * @return the shifted formula if the formula was changed,
      *         <code>null</code> if the formula wasn't modified
      */
+    @SuppressWarnings("resource")
     private static String shiftFormula(XSSFRow row, String formula, FormulaShifter shifter) {
         XSSFSheet sheet = row.getSheet();
         XSSFWorkbook wb = sheet.getWorkbook();
@@ -231,7 +234,7 @@ public final class XSSFRowShifter {
         }
     }
 
-    @SuppressWarnings("deprecation")
+    @SuppressWarnings("resource")
     public void updateConditionalFormatting(FormulaShifter shifter) {
         XSSFWorkbook wb = sheet.getWorkbook();
         int sheetIndex = wb.getSheetIndex(sheet);
index bf2b5e8f4181547a195b17e2fdbf1aef0dd59c0f..7b835605055afad83324852fe3d46c94942d74f5 100644 (file)
@@ -33,7 +33,6 @@ public class XWPFCommentsDecorator extends XWPFParagraphDecorator {
         this(nextDecorator.paragraph, nextDecorator);
     }
 
-    @SuppressWarnings("deprecation")
     public XWPFCommentsDecorator(XWPFParagraph paragraph, XWPFParagraphDecorator nextDecorator) {
         super(paragraph, nextDecorator);
 
index 0e275460a0580c57175b85a6a25eae956a128a28..2cf42f1862bf9a9423b62ec9c178519f3292febb 100644 (file)
@@ -32,7 +32,6 @@ public abstract class AbstractXWPFSDT implements ISDTContents {
     private final String tag;\r
     private final IBody part;\r
 \r
-    @SuppressWarnings("deprecation")\r
     public AbstractXWPFSDT(CTSdtPr pr, IBody part) {\r
 \r
         CTString[] aliases = pr.getAliasArray();\r
index 627971b3445171e1d908cfff7e306cb8493b23ed..5f7fa5d8df528a95f1dceab3b7373bf626cc9518 100644 (file)
@@ -29,7 +29,6 @@ public class XWPFComment {
     protected String author;
     protected StringBuffer text;
 
-    @SuppressWarnings("deprecation")
     public XWPFComment(CTComment comment, XWPFDocument document) {
         text = new StringBuffer();
         id = comment.getId().toString();
index b22af706ca29b3354fa85e1887b846c7ccf38279..cdbada28eadd90f1b721bbccb020713c20c870fd 100644 (file)
@@ -252,7 +252,6 @@ public class XWPFDocument extends POIXMLDocument implements Document, IBody {
         }
     }
 
-    @SuppressWarnings("deprecation")
     private void initFootnotes() throws XmlException, IOException {
         for (POIXMLDocumentPart p : getRelations()) {
             String relation = p.getPackageRelationship().getRelationshipType();
@@ -1212,7 +1211,6 @@ public class XWPFDocument extends POIXMLDocument implements Document, IBody {
      * @param table
      */
     @Override
-    @SuppressWarnings("deprecation")
     public void insertTable(int pos, XWPFTable table) {
         bodyElements.add(pos, table);
         int i = 0;
index 2d0c8d6dd8a0e6ea495bf0b465a60f67d0937e2d..741bd4486c9b74fa79f855fdf955f6ccd954050f 100644 (file)
@@ -124,7 +124,6 @@ public class XWPFFootnote implements Iterable<XWPFParagraph>, IBody {
      * @param table\r
      * @see org.apache.poi.xwpf.usermodel.IBody#insertTable(int pos, XWPFTable table)\r
      */
-    @SuppressWarnings("deprecation")
     public void insertTable(int pos, XWPFTable table) {
         bodyElements.add(pos, table);\r
         int i = 0;\r
index c97ccd4507415f64cd5471903ffaf9b50be31f07..1ecdc3d70184ae0207c0cd87e64096566ed6e168 100644 (file)
@@ -66,7 +66,6 @@ public class XWPFFootnotes extends POIXMLDocumentPart {
      * Read document
      */\r
     @Override\r
-    @SuppressWarnings("deprecation")\r
     protected void onDocumentRead() throws IOException {\r
         FootnotesDocument notesDoc;\r
         try {\r
index b5d3a6ad18df43e27ec54b3d475b3646ea13c7c8..f5460dbd9c42f01a2e8ac4ec8147ea91eedb9726 100644 (file)
@@ -441,7 +441,6 @@ public abstract class XWPFHeaderFooter extends POIXMLDocumentPart implements IBo
      * @param pos
      * @param table
      */
-    @SuppressWarnings("deprecation")
     public void insertTable(int pos, XWPFTable table) {
         bodyElements.add(pos, table);
         int i = 0;
index ab802ffbcf40790cd4d6f7384869020302459b6c..bf9cafaec52f23b0f20a7e9ef6d9f92fc80eeb3e 100644 (file)
@@ -42,7 +42,6 @@ public class XWPFLatentStyles {
     /**
      * checks whether specific LatentStyleID is a latentStyle\r
      */\r
-    @SuppressWarnings("deprecation")\r
     protected boolean isLatentStyle(String latentStyleID) {\r
         for (CTLsdException lsd : latentStyles.getLsdExceptionArray()) {\r
             if (lsd.getName().equals(latentStyleID)) {\r
index 7059df9e2789a3c0669786e2991938f957fc2e69..7b27e3aeb46008e87bbadb4efa33ea1f08668d6b 100644 (file)
@@ -69,7 +69,6 @@ public class XWPFNumbering extends POIXMLDocumentPart {
      * read numbering form an existing package\r
      */\r
     @Override\r
-    @SuppressWarnings("deprecation")\r
     protected void onDocumentRead() throws IOException {\r
         NumberingDocument numberingDoc = null;\r
         InputStream is;\r
index 8e52c32a97a321f3f0c56057f465d14e262faf8d..4f2931886537eab79c183f86faed2b476595a034 100644 (file)
@@ -1376,7 +1376,6 @@ public class XWPFParagraph implements IBodyElement, IRunBody, ISDTContents, Para
         int beginRunPos = 0, candCharPos = 0;
         boolean newList = false;
         
-        @SuppressWarnings("deprecation")
         CTR[] rArray = paragraph.getRArray();
         for (int runPos = startRun; runPos < rArray.length; runPos++) {
             int beginTextPos = 0, beginCharPos = 0, textPos = 0, charPos = 0;
@@ -1437,7 +1436,6 @@ public class XWPFParagraph implements IBodyElement, IRunBody, ISDTContents, Para
      *
      * @param segment
      */
-    @SuppressWarnings("deprecation")
     public String getText(TextSegement segment) {
         int runBegin = segment.getBeginRun();
         int textBegin = segment.getBeginText();
index 99f63609e93acf9620a53d1cb8102e9a18a00a9a..d0ee35a74cd61e46116291beb68f67ed4349a64f 100644 (file)
@@ -94,7 +94,6 @@ public class XWPFRun implements ISDTContents, IRunElement, CharacterRun {
      * @param r the CTR bean which holds the run attributes\r
      * @param p the parent paragraph\r
      */\r
-    @SuppressWarnings("deprecation")
     public XWPFRun(CTR r, IRunBody p) {
         this.run = r;
         this.parent = p;
index d9632926b22a7d34fe0ad890b3238bd1ab79d628..afe0c0f45dfd7d6db25fff1334cc12e00692bdf2 100644 (file)
@@ -129,7 +129,6 @@ public class XWPFStyles extends POIXMLDocumentPart {
      *\r
      * @param styles\r
      */\r
-    @SuppressWarnings("deprecation")\r
     public void setStyles(CTStyles styles) {
         ctStyles = styles;\r
 \r
index 1f4fd2b38473edf6e35bc2d5827dcc5bf6ddda9c..7c9bb397f988b0c6ac3f08506c3c982e32b41030 100644 (file)
@@ -92,7 +92,6 @@ public class XWPFTable implements IBodyElement, ISDTContents {
         }
     }
 
-    @SuppressWarnings("deprecation")
     public XWPFTable(CTTbl table, IBody part) {
         this.part = part;
         this.ctTbl = table;
index adc04c26e743e1c527cdfc5ba81bf4c047d7099b..13cc7f3b7699fccaaf7f722de535485e6561af70 100644 (file)
@@ -396,7 +396,6 @@ public class XWPFTableCell implements IBody, ICell {
      *\r
      * @see org.apache.poi.xwpf.usermodel.IBody#insertTable(int, org.apache.poi.xwpf.usermodel.XWPFTable)\r
      */\r
-    @SuppressWarnings("deprecation")\r
     public void insertTable(int pos, XWPFTable table) {
         bodyElements.add(pos, table);
         int i = 0;
index 5a947efc7a7c9ca5ef8512ea1db04c43ba4fa12e..2ec97ec2986f3e2f91fb8957d996e21756209a5c 100644 (file)
@@ -156,7 +156,6 @@ public class XWPFTableRow {
      *\r
      * @return a list of {@link XWPFTableCell}\r
      */\r
-    @SuppressWarnings("deprecation")\r
     public List<XWPFTableCell> getTableCells() {\r
         if (tableCells == null) {\r
             List<XWPFTableCell> cells = new ArrayList<XWPFTableCell>();\r