]> source.dussan.org Git - poi.git/commitdiff
apply some spelling fixes
authorPJ Fanning <fanningpj@apache.org>
Tue, 27 Jun 2023 19:33:13 +0000 (19:33 +0000)
committerPJ Fanning <fanningpj@apache.org>
Tue, 27 Jun 2023 19:33:13 +0000 (19:33 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1910639 13f79535-47bb-0310-9956-ffa450edef68

17 files changed:
poi-examples/src/main/java/org/apache/poi/examples/ss/AddDimensionedImage.java
poi-ooxml/src/main/java/org/apache/poi/xslf/usermodel/XSLFSimpleShape.java
poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFPivotCacheDefinition.java
poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFSheet.java
poi-ooxml/src/main/java/org/apache/poi/xwpf/usermodel/XWPFDocument.java
poi-ooxml/src/main/java/org/apache/poi/xwpf/usermodel/XWPFSettings.java
poi-ooxml/src/test/java/org/apache/poi/xddf/usermodel/chart/TestXDDFChartRemoveSeries.java
poi-ooxml/src/test/java/org/apache/poi/xslf/usermodel/TestXSLFAutoShape.java
poi-ooxml/src/test/java/org/apache/poi/xssf/usermodel/BaseTestXSSFPivotTable.java
poi-ooxml/src/test/java/org/apache/poi/xssf/usermodel/TestXSSFBugs.java
poi-ooxml/src/test/java/org/apache/poi/xssf/usermodel/TestXSSFCell.java
poi-ooxml/src/test/java/org/apache/poi/xwpf/usermodel/TestXWPFHeader.java
poi/src/main/java/org/apache/poi/hssf/model/InternalWorkbook.java
poi/src/main/java/org/apache/poi/hssf/record/ExtendedFormatRecord.java
poi/src/main/java/org/apache/poi/hssf/usermodel/HSSFWorkbook.java
poi/src/test/java/org/apache/poi/ss/usermodel/BaseTestNamedRange.java
poi/src/test/java/org/apache/poi/ss/util/TestSheetUtil.java

index 56ee62d271c4f632c9d49b975e166812dbf56a93..e3939aae48984050dcb723ac386bb777ef154371 100644 (file)
@@ -632,7 +632,7 @@ public class AddDimensionedImage {
             totalWidthMM += (colWidthMM + ConvertImageUnits.CELL_BORDER_WIDTH_MILLIMETRES);
             toColumn++;
         }
-        // De-crement by one the last column value.
+        // De-rement by one the last column value.
         toColumn--;
         // Highly unlikely that this will be true but, if the width of a series
         // of columns is exactly equal to the required width of the image, then
index 269a0df884c7b0bbb6e23eaa75d41cc0b2231d3e..16c32e1c6d2ff14f0db4cce40a5e338e518af092 100644 (file)
@@ -764,7 +764,7 @@ public abstract class XSLFSimpleShape extends XSLFShape
     /**
      * Specifies the line end decoration, such as a triangle or arrowhead.
      *
-     * @param style the line end docoration style
+     * @param style the line end decoration style
      */
     @SuppressWarnings("WeakerAccess")
     public void setLineHeadDecoration(DecorationShape style) {
index e5709c01e9a5136ea41b282c1c786582528064d6..f1dfd1a5c926e07967b3c05724a6d0b2959148c5 100644 (file)
@@ -55,7 +55,7 @@ public class XSSFPivotCacheDefinition extends POIXMLDocumentPart{
     }
 
      /**
-     * Creates an XSSFPivotCacheDefintion representing the given package part and relationship.
+     * Creates an XSSFPivotCacheDefinition representing the given package part and relationship.
      * Should only be called when reading in an existing file.
      *
      * @param part - The package part that holds xml data representing this pivot cache definition.
index 70ed47e89e8b71c51fee9cd90827c44c689e69fd..73183eae856eb4066ef06993e8f1fb909db3fe28 100644 (file)
@@ -4639,7 +4639,7 @@ public class XSSFSheet extends POIXMLDocumentPart implements Sheet, OoxmlSheetEx
         pivotTables.add(pivotTable);
         XSSFWorkbook workbook = getWorkbook();
 
-        //Create relationship between the pivot cache defintion and the workbook
+        //Create relationship between the pivot cache definition and the workbook
         XSSFPivotCacheDefinition pivotCacheDefinition = (XSSFPivotCacheDefinition) workbook.
                 createRelationship(XSSFRelation.PIVOT_CACHE_DEFINITION, getWorkbook().getXssfFactory(), tableId);
         String rId = workbook.getRelationId(pivotCacheDefinition);
index ee285455f45f459380e59aab4f3c60bc3e58aec9..09d6a6eefe80490a69babad2c093fe89e71c8065 100644 (file)
@@ -1309,7 +1309,7 @@ public class XWPFDocument extends POIXMLDocument implements Document, IBody {
      *
      * @param password the plaintext password, if null no password will be applied
      * @param hashAlgo the hash algorithm - only md2, m5, sha1, sha256, sha384 and sha512 are supported.
-     *                 if null, it will default default to sha1
+     *                 if null, it will default to sha1
      */
     public void enforceReadonlyProtection(String password, HashAlgorithm hashAlgo) {
         settings.setEnforcementEditValue(STDocProtect.READ_ONLY, password, hashAlgo);
@@ -1345,7 +1345,7 @@ public class XWPFDocument extends POIXMLDocument implements Document, IBody {
      *
      * @param password the plaintext password, if null no password will be applied
      * @param hashAlgo the hash algorithm - only md2, m5, sha1, sha256, sha384 and sha512 are supported.
-     *                 if null, it will default default to sha1
+     *                 if null, it will default to sha1
      */
     public void enforceFillingFormsProtection(String password, HashAlgorithm hashAlgo) {
         settings.setEnforcementEditValue(STDocProtect.FORMS, password, hashAlgo);
@@ -1381,7 +1381,7 @@ public class XWPFDocument extends POIXMLDocument implements Document, IBody {
      *
      * @param password the plaintext password, if null no password will be applied
      * @param hashAlgo the hash algorithm - only md2, m5, sha1, sha256, sha384 and sha512 are supported.
-     *                 if null, it will default default to sha1
+     *                 if null, it will default to sha1
      */
     public void enforceCommentsProtection(String password, HashAlgorithm hashAlgo) {
         settings.setEnforcementEditValue(STDocProtect.COMMENTS, password, hashAlgo);
@@ -1417,7 +1417,7 @@ public class XWPFDocument extends POIXMLDocument implements Document, IBody {
      *
      * @param password the plaintext password, if null no password will be applied
      * @param hashAlgo the hash algorithm - only md2, m5, sha1, sha256, sha384 and sha512 are supported.
-     *                 if null, it will default default to sha1
+     *                 if null, it will default to sha1
      */
     public void enforceTrackedChangesProtection(String password, HashAlgorithm hashAlgo) {
         settings.setEnforcementEditValue(STDocProtect.TRACKED_CHANGES, password, hashAlgo);
index 90753d3b92e2bfc13632704ffface7df96f386e5..696935db164d2d5850ad1ff146944b62b98c50d2 100644 (file)
@@ -192,7 +192,7 @@ public class XWPFSettings extends POIXMLDocumentPart {
      * @param editValue the protection type
      * @param password  the plaintext password, if null no password will be applied
      * @param hashAlgo  the hash algorithm - only md2, m5, sha1, sha256, sha384 and sha512 are supported.
-     *                  if null, it will default default to sha1
+     *                  if null, it will default to sha1
      */
     public void setEnforcementEditValue(org.openxmlformats.schemas.wordprocessingml.x2006.main.STDocProtect.Enum editValue,
                                         String password, HashAlgorithm hashAlgo) {
index 137d3901faf32051bac28f5a86544f1d7f5c9996..8bea979e33dcf4e7e7478415de2641fdcba28ec8 100644 (file)
@@ -67,7 +67,7 @@ class TestXDDFChartRemoveSeries {
         final XDDFValueAxis bottomAxis = chart.createValueAxis(AxisPosition.BOTTOM);
         final XDDFValueAxis leftAxis = chart.createValueAxis(AxisPosition.LEFT);
 
-        // Initialize data data sources
+        // Initialize data sources
 
         final Double dX[] = new Double[5];
         final Double dY1[] = new Double[5];
index 330f6629e7accd0de58f95fa5a4443fc6f1d3006..0c199cd2b0efb5bbc722e41e5d5b5f34bf62a1d3 100644 (file)
@@ -69,7 +69,7 @@ class TestXSLFAutoShape {
         shape.setRightInset(0.0);
         assertEquals(0.0, shape.getRightInset(), 0);
 
-        // unset to defauls
+        // unset to defaults
         shape.setBottomInset(-1);
         assertEquals(3.6, shape.getBottomInset(), 0);
         shape.setTopInset(-1);
index d989dca8708ad7350cbd8dd72e07f63f585665f4..4766c8522f294bbaf5737df146ada426470765e0 100644 (file)
@@ -71,10 +71,10 @@ public abstract class BaseTestXSSFPivotTable {
         assertEquals(0, pivotTable.getRowLabelColumns().size());
 
         pivotTable.addRowLabel(0);
-        CTPivotTableDefinition defintion = pivotTable.getCTPivotTableDefinition();
+        CTPivotTableDefinition definition = pivotTable.getCTPivotTableDefinition();
 
-        assertEquals(0, defintion.getRowFields().getFieldArray(0).getX());
-        assertEquals(1, defintion.getRowFields().getCount());
+        assertEquals(0, definition.getRowFields().getFieldArray(0).getX());
+        assertEquals(1, definition.getRowFields().getCount());
         assertEquals(1, pivotTable.getRowLabelColumns().size());
 
         pivotTable.addRowLabel(1);
@@ -100,9 +100,9 @@ public abstract class BaseTestXSSFPivotTable {
         int columnIndex = 0;
 
         pivotTable.addColumnLabel(DataConsolidateFunction.SUM, columnIndex);
-        CTPivotTableDefinition defintion = pivotTable.getCTPivotTableDefinition();
+        CTPivotTableDefinition definition = pivotTable.getCTPivotTableDefinition();
 
-        assertNull(defintion.getColFields());
+        assertNull(definition.getColFields());
     }
 
     /**
@@ -117,9 +117,9 @@ public abstract class BaseTestXSSFPivotTable {
         pivotTable.addColumnLabel(DataConsolidateFunction.SUM, columnOne);
         pivotTable.addColumnLabel(DataConsolidateFunction.MAX, columnTwo);
         pivotTable.addColumnLabel(DataConsolidateFunction.MIN, columnThree);
-        CTPivotTableDefinition defintion = pivotTable.getCTPivotTableDefinition();
+        CTPivotTableDefinition definition = pivotTable.getCTPivotTableDefinition();
 
-        assertEquals(3, defintion.getDataFields().getDataFieldList().size());
+        assertEquals(3, definition.getDataFields().getDataFieldList().size());
     }
 
 
@@ -135,9 +135,9 @@ public abstract class BaseTestXSSFPivotTable {
         pivotTable.addColumnLabel(DataConsolidateFunction.SUM, columnOne);
         pivotTable.addColumnLabel(DataConsolidateFunction.SUM, columnTwo);
         pivotTable.addColumnLabel(DataConsolidateFunction.SUM, columnThree);
-        CTPivotTableDefinition defintion = pivotTable.getCTPivotTableDefinition();
+        CTPivotTableDefinition definition = pivotTable.getCTPivotTableDefinition();
 
-        assertEquals(3, defintion.getDataFields().getDataFieldList().size());
+        assertEquals(3, definition.getDataFields().getDataFieldList().size());
     }
 
     /**
@@ -150,9 +150,9 @@ public abstract class BaseTestXSSFPivotTable {
 
         pivotTable.addColumnLabel(DataConsolidateFunction.SUM, columnOne);
         pivotTable.addColumnLabel(DataConsolidateFunction.SUM, columnTwo);
-        CTPivotTableDefinition defintion = pivotTable.getCTPivotTableDefinition();
+        CTPivotTableDefinition definition = pivotTable.getCTPivotTableDefinition();
 
-        assertEquals(defintion.getColFields().getFieldArray(0).getX(), -2);
+        assertEquals(definition.getColFields().getFieldArray(0).getX(), -2);
     }
 
     /**
@@ -162,11 +162,11 @@ public abstract class BaseTestXSSFPivotTable {
     void testColumnLabelCreatesDataField() {
         pivotTable.addColumnLabel(DataConsolidateFunction.SUM, 0);
 
-        CTPivotTableDefinition defintion = pivotTable.getCTPivotTableDefinition();
+        CTPivotTableDefinition definition = pivotTable.getCTPivotTableDefinition();
 
-        assertEquals(0, defintion.getDataFields().getDataFieldArray(0).getFld());
+        assertEquals(0, definition.getDataFields().getDataFieldArray(0).getFld());
         assertSame(STDataConsolidateFunction.Enum.forInt(DataConsolidateFunction.SUM.getValue()),
-                defintion.getDataFields().getDataFieldArray(0).getSubtotal());
+                definition.getDataFields().getDataFieldArray(0).getSubtotal());
     }
 
     /**
@@ -180,10 +180,10 @@ public abstract class BaseTestXSSFPivotTable {
 
         pivotTable.addColumnLabel(DataConsolidateFunction.SUM, columnIndex, customName);
 
-        CTPivotTableDefinition defintion = pivotTable.getCTPivotTableDefinition();
+        CTPivotTableDefinition definition = pivotTable.getCTPivotTableDefinition();
 
-        assertEquals(defintion.getDataFields().getDataFieldArray(0).getFld(), columnIndex);
-        assertEquals(defintion.getDataFields().getDataFieldArray(0).getName(), customName);
+        assertEquals(definition.getDataFields().getDataFieldArray(0).getFld(), columnIndex);
+        assertEquals(definition.getDataFields().getDataFieldArray(0).getName(), customName);
     }
 
     /**
@@ -197,10 +197,10 @@ public abstract class BaseTestXSSFPivotTable {
 
         pivotTable.addColumnLabel(DataConsolidateFunction.SUM, columnIndex, null, format);
 
-        CTPivotTableDefinition defintion = pivotTable.getCTPivotTableDefinition();
+        CTPivotTableDefinition definition = pivotTable.getCTPivotTableDefinition();
 
-        assertEquals(defintion.getDataFields().getDataFieldArray(0).getFld(), columnIndex);
-        assertEquals(defintion.getDataFields().getDataFieldArray(0).getNumFmtId(), wb.createDataFormat().getFormat(format));
+        assertEquals(definition.getDataFields().getDataFieldArray(0).getFld(), columnIndex);
+        assertEquals(definition.getDataFields().getDataFieldArray(0).getNumFmtId(), wb.createDataFormat().getFormat(format));
     }
 
     /**
@@ -292,10 +292,10 @@ public abstract class BaseTestXSSFPivotTable {
         assertEquals(0, pivotTable.getColLabelColumns().size());
 
         pivotTable.addColLabel(0);
-        CTPivotTableDefinition defintion = pivotTable.getCTPivotTableDefinition();
+        CTPivotTableDefinition definition = pivotTable.getCTPivotTableDefinition();
 
-        assertEquals(0, defintion.getColFields().getFieldArray(0).getX());
-        assertEquals(1, defintion.getColFields().getCount());
+        assertEquals(0, definition.getColFields().getFieldArray(0).getX());
+        assertEquals(1, definition.getColFields().getCount());
         assertEquals(1, pivotTable.getColLabelColumns().size());
 
         pivotTable.addColLabel(1);
index 7b735206d44ab77ae17390e20c56e7742901aff8..d30d4d3abcaae72c9a7bab16b04318a1f167a1f1 100644 (file)
@@ -3809,7 +3809,7 @@ public final class TestXSSFBugs extends BaseTestBugzillaIssues {
             }
         }
 
-        // for the decrytped bytes
+        // for the decrypted bytes
         UnsynchronizedByteArrayOutputStream bosDec = UnsynchronizedByteArrayOutputStream.builder().get();
 
         /* decrypt excel by poi */
index ec06fa81f2948c6f3c5dd38e2ef3453d89e3a4a6..742b29af49eb43653ba6b170d1b33283cfe1d5b0 100644 (file)
@@ -320,8 +320,8 @@ public final class TestXSSFCell extends BaseTestXCell {
         // Test idea: iterate over cells in the reference worksheet, they all have the R attribute set.
         // For each cell from the reference sheet find the corresponding cell in the problematic file (with missing R)
         // and assert that POI reads them equally:
-        DataFormatter formater = new DataFormatter();
-        for(Row r : sheetRef){
+        DataFormatter formatter = new DataFormatter();
+        for (Row r : sheetRef) {
             XSSFRow rowRef = (XSSFRow)r;
             XSSFRow row = sheet.getRow(rowRef.getRowNum());
 
@@ -338,8 +338,8 @@ public final class TestXSSFCell extends BaseTestXCell {
                 if(!cell.getCTCell().isSetR()){
                     assertTrue(cellRef.getCTCell().isSetR(), "R must e set in cellRef");
 
-                    String valRef = formater.formatCellValue(cellRef);
-                    String val = formater.formatCellValue(cell);
+                    String valRef = formatter.formatCellValue(cellRef);
+                    String val = formatter.formatCellValue(cell);
                     assertEquals(valRef, val);
                 }
 
index 73d2eebe202441b9d2d417bfd10cdd78218bd145..5ca2f5dc3ed63b44940067b68a490957eb5293c7 100644 (file)
@@ -127,7 +127,7 @@ final class TestXWPFHeader {
 
             assertEquals(0, headerF.getParagraphs().size());
 
-            // As an additional check, recover the defauls footer and
+            // As an additional check, recover the defaults footer and
             // make sure that it contains two paragraphs of text and that
             // both do hold what is expected.
             footerD = policy.getDefaultFooter();
index 424ab6eda815e24016fd5c5e0226ce7345695b10..39ea0530a4df6d00db541cbca7b80378cfe86924 100644 (file)
@@ -2041,7 +2041,7 @@ public final class InternalWorkbook {
     }
 
     /**
-     * protect a workbook with a password (not encypted, just sets writeprotect
+     * protect a workbook with a password (not encrypted, just sets writeprotect
      * flags and the password.
      *
      * @param password the password
@@ -2080,7 +2080,7 @@ public final class InternalWorkbook {
      *
      * @param name the  name of an external function, typically a name of a UDF
      * @param sheetRefIndex the sheet ref index, or -1 if not known
-     * @param udf  locator of user-defiend functions to resolve names of VBA and Add-In functions
+     * @param udf  locator of user-defined functions to resolve names of VBA and Add-In functions
      * @return the external name or null
      */
     public NameXPtg getNameXPtg(String name, int sheetRefIndex, UDFFinder udf) {
index b5a1d3d94e6e1a4617eccb27092d09b0821b1dc7..7ec61b190f300185cf9f4575d7d71325b7008d3b 100644 (file)
@@ -762,7 +762,7 @@ public final class ExtendedFormatRecord extends StandardRecord {
     }
 
     // i've no idea.. possible values are 1 for down, 2 for up and 3 for both...0 for none..
-    // maybe a diagnal line?
+    // maybe a diagonal line?
 
     /**
      * Not sure what this is for (maybe fill lines?) 1 = down, 2 = up, 3 = both, 0 for none..
@@ -1474,7 +1474,7 @@ public final class ExtendedFormatRecord extends StandardRecord {
     }
 
     // i've no idea.. possible values are 1 for down, 2 for up and 3 for both...0 for none..
-    // maybe a diagnal line?
+    // maybe a diagonal line?
 
     /**
      * Not sure what this is for (maybe fill lines?) 1 = down, 2 = up, 3 = both, 0 for none..
index b303d3d7dac8dc5f09c9e3cc2e16b561cf8a4c24..aac44b1542b263f6507df27ce82de0bc26982cbf 100644 (file)
@@ -2168,7 +2168,7 @@ public final class HSSFWorkbook extends POIDocument implements Workbook {
     }
 
     /**
-     * protect a workbook with a password (not encypted, just sets writeprotect
+     * protect a workbook with a password (not encrypted, just sets writeprotect
      * flags and the password.
      *
      * @param password to set
index cdc514f3abfb428af42f2f5949f6b856b404249a..c6936cec0b93551d2fb943148fc21ec8a0d7f0e9 100644 (file)
@@ -580,7 +580,7 @@ public abstract class BaseTestNamedRange {
     }
 
     @Test
-    public final void testDefferedSetting() throws Exception {
+    public final void testDeferredSetting() throws Exception {
         try (Workbook wb = _testDataProvider.createWorkbook()) {
             Name n1 = wb.createName();
             assertNull(n1.getRefersToFormula());
index 816db091a2d1304ba05f71bb0fd4aaaa767376fb..288ded538d566bf215207658e87a04600d9b81b9 100644 (file)
@@ -162,7 +162,7 @@ final class TestSheetUtil {
             cell.setCellValue("sometext");
 
             assertTrue(SheetUtil.getColumnWidth(sheet, 0, true) > 0, "Having some width for rows with actual cells");
-            assertEquals(-1.0, SheetUtil.getColumnWidth(sheet, 0, true, 1, 2), 0.01, "Not having any widht for rows with all empty cells");
+            assertEquals(-1.0, SheetUtil.getColumnWidth(sheet, 0, true, 1, 2), 0.01, "Not having any width for rows with all empty cells");
         }
     }
 
@@ -178,7 +178,7 @@ final class TestSheetUtil {
             cell.setCellValue((String)null);
 
             assertEquals(-1, SheetUtil.getColumnWidth(sheet, 0, true), "Having some width for rows with actual cells");
-            assertEquals(-1.0, SheetUtil.getColumnWidth(sheet, 0, true, 1, 2), 0.01, "Not having any widht for rows with all empty cells");
+            assertEquals(-1.0, SheetUtil.getColumnWidth(sheet, 0, true, 1, 2), 0.01, "Not having any width for rows with all empty cells");
         }
     }
 
@@ -194,7 +194,7 @@ final class TestSheetUtil {
             cell.setCellValue("");
 
             assertTrue(SheetUtil.getColumnWidth(sheet, 0, true) > 0, "Having some width for rows with actual cells");
-            assertEquals(-1.0, SheetUtil.getColumnWidth(sheet, 0, true, 1, 2), 0.01, "Not having any widht for rows with all empty cells");
+            assertEquals(-1.0, SheetUtil.getColumnWidth(sheet, 0, true, 1, 2), 0.01, "Not having any width for rows with all empty cells");
         }
     }
 
@@ -212,7 +212,7 @@ final class TestSheetUtil {
             cell.setCellType(CellType.STRING);
 
             assertTrue(SheetUtil.getColumnWidth(sheet, 0, true) > 0, "Having some width for rows with actual cells");
-            assertEquals(-1.0, SheetUtil.getColumnWidth(sheet, 0, true, 1, 2), 0.01, "Not having any widht for rows with all empty cells");
+            assertEquals(-1.0, SheetUtil.getColumnWidth(sheet, 0, true, 1, 2), 0.01, "Not having any width for rows with all empty cells");
         }
     }
 }