Author: yegor
Date: Thu Oct 14 10:06:16 2010
New Revision: 1022452
URL: http://svn.apache.org/viewvc?rev=1022452&view=rev
Log:
suppress deprecation warnings in poi-ooxml
Modified:
poi/trunk/src/ooxml/java/org/apache/poi/xssf/model/CommentsTable.java
poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFRichTextString.java
poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFSheet.java
poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFWorkbook.java
Modified: poi/trunk/src/ooxml/java/org/apache/poi/xssf/model/CommentsTable.java
URL:
http://svn.apache.org/viewvc/poi/trunk/src/ooxml/java/org/apache/poi/xssf/model/CommentsTable.java?rev=1022452&r1=1022451&r2=1022452&view=diff
==============================================================================
--- poi/trunk/src/ooxml/java/org/apache/poi/xssf/model/CommentsTable.java
(original)
+++ poi/trunk/src/ooxml/java/org/apache/poi/xssf/model/CommentsTable.java Thu
Oct 14 10:06:16 2010
@@ -112,6 +112,7 @@ public class CommentsTable extends POIXM
return ct == null ? null : new XSSFComment(this, ct, null);
}
+ @SuppressWarnings("deprecation") //YK: getXYZArray() array accessors are
deprecated in xmlbeans with JDK 1.5 support
public CTComment getCTComment(String cellRef) {
// Create the cache if needed
if(commentRefs == null) {
Modified:
poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFRichTextString.java
URL:
http://svn.apache.org/viewvc/poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFRichTextString.java?rev=1022452&r1=1022451&r2=1022452&view=diff
==============================================================================
---
poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFRichTextString.java
(original)
+++
poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFRichTextString.java
Thu Oct 14 10:06:16 2010
@@ -339,6 +339,7 @@ public class XSSFRichTextString implemen
/**
* 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());
Modified: poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFSheet.java
URL:
http://svn.apache.org/viewvc/poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFSheet.java?rev=1022452&r1=1022451&r2=1022452&view=diff
==============================================================================
--- poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFSheet.java
(original)
+++ poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFSheet.java Thu
Oct 14 10:06:16 2010
@@ -185,6 +185,7 @@ public class XSSFSheet extends POIXMLDoc
* 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>();
@@ -543,6 +544,7 @@ public class XSSFSheet extends POIXMLDoc
*
* @return column indexes of all the vertical page breaks, never
<code>null</code>
*/
+ @SuppressWarnings("deprecation") //YK: getXYZArray() array accessors are
deprecated in xmlbeans with JDK 1.5 support
public int[] getColumnBreaks() {
if (!worksheet.isSetColBreaks() ||
worksheet.getColBreaks().sizeOfBrkArray() == 0) {
return new int[0];
@@ -998,6 +1000,7 @@ public class XSSFSheet extends POIXMLDoc
*
* @return row indexes of all the horizontal page breaks, never
<code>null</code>
*/
+ @SuppressWarnings("deprecation") //YK: getXYZArray() array accessors are
deprecated in xmlbeans with JDK 1.5 support
public int[] getRowBreaks() {
if (!worksheet.isSetRowBreaks() ||
worksheet.getRowBreaks().sizeOfBrkArray() == 0) {
return new int[0];
@@ -1177,6 +1180,7 @@ public class XSSFSheet extends POIXMLDoc
}
+ @SuppressWarnings("deprecation") //YK: getXYZArray() array accessors are
deprecated in xmlbeans with JDK 1.5 support
private short getMaxOutlineLevelCols() {
CTCols ctCols = worksheet.getColsArray(0);
short outlineLevel = 0;
@@ -1324,6 +1328,7 @@ public class XSSFSheet extends POIXMLDoc
/**
* Removes a page break at the indicated column
*/
+ @SuppressWarnings("deprecation") //YK: getXYZArray() array accessors are
deprecated in xmlbeans with JDK 1.5 support
public void removeColumnBreak(int column) {
CTBreak[] brkArray = getSheetTypeColumnBreaks().getBrkArray();
for (int i = 0 ; i < brkArray.length ; i++) {
@@ -1379,6 +1384,7 @@ public class XSSFSheet extends POIXMLDoc
/**
* Removes the page break at the indicated row
*/
+ @SuppressWarnings("deprecation") //YK: getXYZArray() array accessors are
deprecated in xmlbeans with JDK 1.5 support
public void removeRowBreak(int row) {
CTPageBreak pgBreak = worksheet.isSetRowBreaks() ?
worksheet.getRowBreaks() : worksheet.addNewRowBreaks();
CTBreak[] brkArray = pgBreak.getBrkArray();
@@ -2134,6 +2140,7 @@ public class XSSFSheet extends POIXMLDoc
* @param copyRowHeight whether to copy the row height during the shift
* @param resetOriginalRowHeight whether to set the original row's height
to the default
*/
+ @SuppressWarnings("deprecation") //YK: getXYZArray() array accessors are
deprecated in xmlbeans with JDK 1.5 support
public void shiftRows(int startRow, int endRow, int n, boolean
copyRowHeight, boolean resetOriginalRowHeight) {
for (Iterator<Row> it = rowIterator() ; it.hasNext() ; ) {
XSSFRow row = (XSSFRow)it.next();
@@ -2278,6 +2285,7 @@ public class XSSFSheet extends POIXMLDoc
*
* @param value <code>true</code> if this sheet is selected
*/
+ @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()) {
@@ -2887,6 +2895,7 @@ public class XSSFSheet extends POIXMLDoc
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();
Modified:
poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFWorkbook.java
URL:
http://svn.apache.org/viewvc/poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFWorkbook.java?rev=1022452&r1=1022451&r2=1022452&view=diff
==============================================================================
--- poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFWorkbook.java
(original)
+++ poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFWorkbook.java
Thu Oct 14 10:06:16 2010
@@ -879,6 +879,7 @@ public class XSSFWorkbook extends POIXML
* which is currently displayed when the workbook is viewed in Excel.
* 'Selected' sheet(s) is a distinct concept.
*/
+ @SuppressWarnings("deprecation") //YK: getXYZArray() array accessors are
deprecated in xmlbeans with JDK 1.5 support
public void setActiveSheet(int index) {
validateSheetIndex(index);
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]