]> source.dussan.org Git - poi.git/commitdiff
Fix javadoc warnings
authorNick Burch <nick@apache.org>
Thu, 31 Jul 2014 13:37:33 +0000 (13:37 +0000)
committerNick Burch <nick@apache.org>
Thu, 31 Jul 2014 13:37:33 +0000 (13:37 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1614886 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/poi/POIOLE2TextExtractor.java
src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFPivotTable.java

index f5cbd95f1de9bcf240ea0ce101cc1801b66a3169..c0f4cbd1d741b9b755893c812dc90986f502a117 100644 (file)
@@ -37,7 +37,7 @@ public abstract class POIOLE2TextExtractor extends POITextExtractor {
        /**
         * Creates a new text extractor for the given document
         * 
-        * @param The POIDocument to use in this extractor.
+        * @param document The POIDocument to use in this extractor.
         */
        public POIOLE2TextExtractor(POIDocument document) {
                super(document);
index db44f3fc0f8a3a402d7fdd986b2c0c4f7f80352c..d31ae3f68ae54fbec1019386a301fe6a015b8685 100644 (file)
@@ -227,7 +227,7 @@ public class XSSFPivotTable extends POIXMLDocumentPart {
 
     /**
      * Add a row label using data from the given column.
-     * @param columnIndex, the index of the column to be used as row label.
+     * @param columnIndex the index of the column to be used as row label.
      */
     @Beta
     public void addRowLabel(int columnIndex) {
@@ -281,8 +281,8 @@ public class XSSFPivotTable extends POIXMLDocumentPart {
 
     /**
      * Add a column label using data from the given column and specified function
-     * @param columnIndex, the index of the column to be used as column label.
-     * @param function, the function to be used on the data
+     * @param columnIndex the index of the column to be used as column label.
+     * @param function the function to be used on the data
      * The following functions exists:
      * Sum, Count, Average, Max, Min, Product, Count numbers, StdDev, StdDevp, Var, Varp
      */
@@ -313,8 +313,8 @@ public class XSSFPivotTable extends POIXMLDocumentPart {
 
     /**
      * Add data field with data from the given column and specified function.
-     * @param function, the function to be used on the data
-     * @param index, the index of the column to be used as column label.
+     * @param function the function to be used on the data
+     * @param index the index of the column to be used as column label.
      * The following functions exists:
      * Sum, Count, Average, Max, Min, Product, Count numbers, StdDev, StdDevp, Var, Varp
      */
@@ -343,8 +343,8 @@ public class XSSFPivotTable extends POIXMLDocumentPart {
 
     /**
      * Add column containing data from the referenced area.
-     * @param columnIndex, the index of the column containing the data
-     * @param isDataField, true if the data should be displayed in the pivot table.
+     * @param columnIndex the index of the column containing the data
+     * @param isDataField true if the data should be displayed in the pivot table.
      */
     @Beta
     public void addDataColumn(int columnIndex, boolean isDataField) {
@@ -365,7 +365,7 @@ public class XSSFPivotTable extends POIXMLDocumentPart {
 
     /**
      * Add filter for the column with the corresponding index and cell value
-     * @param columnIndex, index of column to filter on
+     * @param columnIndex index of column to filter on
      */
     @Beta
     public void addReportFilter(int columnIndex) {