diff options
author | PJ Fanning <fanningpj@apache.org> | 2023-03-18 11:55:54 +0000 |
---|---|---|
committer | PJ Fanning <fanningpj@apache.org> | 2023-03-18 11:55:54 +0000 |
commit | 2ae294e606566788f0baf3531c6dcee1b7d30b01 (patch) | |
tree | 0bb89302acbdabc4e48f6ad6b2bb6201a47a0f13 /poi | |
parent | 27344ca66169f2c99fc418eae3217ab1f613fbd4 (diff) | |
download | poi-2ae294e606566788f0baf3531c6dcee1b7d30b01.tar.gz poi-2ae294e606566788f0baf3531c6dcee1b7d30b01.zip |
use 'its'
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1908484 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'poi')
8 files changed, 8 insertions, 8 deletions
diff --git a/poi/src/main/java/org/apache/poi/hssf/usermodel/EscherGraphics.java b/poi/src/main/java/org/apache/poi/hssf/usermodel/EscherGraphics.java index a7ee8cd45a..f21e49c751 100644 --- a/poi/src/main/java/org/apache/poi/hssf/usermodel/EscherGraphics.java +++ b/poi/src/main/java/org/apache/poi/hssf/usermodel/EscherGraphics.java @@ -38,7 +38,7 @@ import java.text.AttributedCharacterIterator; * One important concept worth considering is that of font size. One of the * difficulties in converting Graphics calls into escher drawing calls is that * Excel does not have the concept of absolute pixel positions. It measures - * it's cell widths in 'characters' and the cell heights in points. + * its cell widths in 'characters' and the cell heights in points. * Unfortunately it's not defined exactly what a type of character it's * measuring. Presumably this is due to the fact that the Excel will be * using different fonts on different platforms or even within the same diff --git a/poi/src/main/java/org/apache/poi/hssf/usermodel/EscherGraphics2d.java b/poi/src/main/java/org/apache/poi/hssf/usermodel/EscherGraphics2d.java index 6ac0e3c9c5..6fdfdbf9e6 100644 --- a/poi/src/main/java/org/apache/poi/hssf/usermodel/EscherGraphics2d.java +++ b/poi/src/main/java/org/apache/poi/hssf/usermodel/EscherGraphics2d.java @@ -49,7 +49,7 @@ import java.util.Map; * One important concept worth considering is that of font size. One of the * difficulties in converting Graphics calls into escher drawing calls is that * Excel does not have the concept of absolute pixel positions. It measures - * it's cell widths in 'characters' and the cell heights in points. + * its cell widths in 'characters' and the cell heights in points. * Unfortunately it's not defined exactly what a type of character it's * measuring. Presumably this is due to the fact that the Excel will be * using different fonts on different platforms or even within the same diff --git a/poi/src/main/java/org/apache/poi/poifs/crypt/EncryptionInfo.java b/poi/src/main/java/org/apache/poi/poifs/crypt/EncryptionInfo.java index 30fc9539e3..2a8bb35f38 100644 --- a/poi/src/main/java/org/apache/poi/poifs/crypt/EncryptionInfo.java +++ b/poi/src/main/java/org/apache/poi/poifs/crypt/EncryptionInfo.java @@ -160,7 +160,7 @@ public class EncryptionInfo implements GenericRecord { * Constructs an EncryptionInfo from scratch * * @param encryptionMode see {@link EncryptionMode} for values, {@link EncryptionMode#cryptoAPI} is for - * internal use only, as it's record based + * internal use only, as its record based * @param cipherAlgorithm the cipher algorithm * @param hashAlgorithm the hash algorithm * @param keyBits the bit count of the key diff --git a/poi/src/main/java/org/apache/poi/poifs/filesystem/Ole10Native.java b/poi/src/main/java/org/apache/poi/poifs/filesystem/Ole10Native.java index 0a8d8e9548..762038b3c4 100644 --- a/poi/src/main/java/org/apache/poi/poifs/filesystem/Ole10Native.java +++ b/poi/src/main/java/org/apache/poi/poifs/filesystem/Ole10Native.java @@ -37,7 +37,7 @@ import org.apache.poi.util.StringUtil; * * Ole10Native objects come in different shapes: * <ul> - * <li>unparsed: we can't identify it's structure</li> + * <li>unparsed: we can't identify its structure</li> * <li>compact: same as unparsed but with a leading flag</li> * <li>parsed - Ole-Class "Package": data + ASCII label,command,filename</li> * <li>parsed - Ole-Class "Package2": as above plus UTF16 label,command,filename</li> diff --git a/poi/src/main/java/org/apache/poi/sl/usermodel/FillStyle.java b/poi/src/main/java/org/apache/poi/sl/usermodel/FillStyle.java index 2bcfd5ce79..59e722b084 100644 --- a/poi/src/main/java/org/apache/poi/sl/usermodel/FillStyle.java +++ b/poi/src/main/java/org/apache/poi/sl/usermodel/FillStyle.java @@ -18,7 +18,7 @@ package org.apache.poi.sl.usermodel; /** - * This interface is the counterpart to {@link StrokeStyle} - it's specifies the filling of a shape + * This interface is the counterpart to {@link StrokeStyle} - it specifies the filling of a shape */ public interface FillStyle { PaintStyle getPaint(); diff --git a/poi/src/main/java/org/apache/poi/sl/usermodel/TextParagraph.java b/poi/src/main/java/org/apache/poi/sl/usermodel/TextParagraph.java index c0d0c3be3a..5318752cde 100644 --- a/poi/src/main/java/org/apache/poi/sl/usermodel/TextParagraph.java +++ b/poi/src/main/java/org/apache/poi/sl/usermodel/TextParagraph.java @@ -375,7 +375,7 @@ public interface TextParagraph< /** - * Get the {@link TabStop TabStops} - the list can't be and it's entries shouldn't be modified. + * Get the {@link TabStop TabStops} - the list can't be and its entries shouldn't be modified. * Opposed to other properties, this method is not cascading to the master sheet, * if the property is not defined on the normal slide level, i.e. the tabstops on * different levels aren't merged. diff --git a/poi/src/main/java/org/apache/poi/ss/util/SheetUtil.java b/poi/src/main/java/org/apache/poi/ss/util/SheetUtil.java index 130169999c..62d4cab315 100644 --- a/poi/src/main/java/org/apache/poi/ss/util/SheetUtil.java +++ b/poi/src/main/java/org/apache/poi/ss/util/SheetUtil.java @@ -225,7 +225,7 @@ public class SheetUtil { final Rectangle2D bounds; if(style.getRotation() != 0){ /* - * Transform the text using a scale so that it's height is increased by a multiple of the leading, + * Transform the text using a scale so that its height is increased by a multiple of the leading, * and then rotate the text before computing the bounds. The scale results in some whitespace around * the unrotated top and bottom of the text that normally wouldn't be present if unscaled, but * is added by the standard Excel autosize. diff --git a/poi/src/main/java/org/apache/poi/ss/util/cellwalk/CellWalkContext.java b/poi/src/main/java/org/apache/poi/ss/util/cellwalk/CellWalkContext.java index 09dfbd176c..74d9569401 100644 --- a/poi/src/main/java/org/apache/poi/ss/util/cellwalk/CellWalkContext.java +++ b/poi/src/main/java/org/apache/poi/ss/util/cellwalk/CellWalkContext.java @@ -22,7 +22,7 @@ public interface CellWalkContext { /** * Returns ordinal number of cell in range. Numeration starts * from top left cell and ends at bottom right cell. Here is a - * brief example (number in cell is it's ordinal number): + * brief example (number in cell is its ordinal number): * * <table> * <caption>ordinal number example</caption> |