diff options
author | Nick Burch <nick@apache.org> | 2015-07-14 21:22:44 +0000 |
---|---|---|
committer | Nick Burch <nick@apache.org> | 2015-07-14 21:22:44 +0000 |
commit | b2d6118eeb179296655e872e1ec0ccfdbe7d48d3 (patch) | |
tree | 34e4b830aee7a66052829a321b21bd4e214b8407 | |
parent | 13065c6b4c9ef079a8e1e1266d3c7b75a3ec004d (diff) | |
download | poi-b2d6118eeb179296655e872e1ec0ccfdbe7d48d3.tar.gz poi-b2d6118eeb179296655e872e1ec0ccfdbe7d48d3.zip |
Fix javadoc warnings
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1691084 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | src/java/org/apache/poi/hssf/record/CFRuleBase.java | 2 | ||||
-rw-r--r-- | src/java/org/apache/poi/ss/usermodel/SheetConditionalFormatting.java | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/java/org/apache/poi/hssf/record/CFRuleBase.java b/src/java/org/apache/poi/hssf/record/CFRuleBase.java index 449594414f..28c21c8d9e 100644 --- a/src/java/org/apache/poi/hssf/record/CFRuleBase.java +++ b/src/java/org/apache/poi/hssf/record/CFRuleBase.java @@ -410,7 +410,7 @@ public abstract class CFRuleBase extends StandardRecord { } /** - * @param ptgs must not be <code>null</code> + * @param formula must not be <code>null</code> * @return encoded size of the formula tokens (does not include 2 bytes for ushort length) */ protected static int getFormulaSize(Formula formula) { diff --git a/src/java/org/apache/poi/ss/usermodel/SheetConditionalFormatting.java b/src/java/org/apache/poi/ss/usermodel/SheetConditionalFormatting.java index 7f54f30158..92e64124a4 100644 --- a/src/java/org/apache/poi/ss/usermodel/SheetConditionalFormatting.java +++ b/src/java/org/apache/poi/ss/usermodel/SheetConditionalFormatting.java @@ -83,7 +83,7 @@ public interface SheetConditionalFormatting { * <p>
* The created conditional formatting rule compares a cell value
* to a formula calculated result, using the specified operator.
- * The type of the created condition is {@link ConditionalFormattingRule#CONDITION_CELL_VALUE_IS}
+ * The type of the created condition is {@link ConditionType#CELL_VALUE_IS}
* </p>
*
* @param comparisonOperation - MUST be a constant value from
@@ -112,7 +112,7 @@ public interface SheetConditionalFormatting { * Create a conditional formatting rule that compares a cell value
* to a formula calculated result, using an operator *
* <p>
- * The type of the created condition is {@link ConditionalFormattingRule#CONDITION_CELL_VALUE_IS}
+ * The type of the created condition is {@link ConditionType#CELL_VALUE_IS}
* </p>
*
* @param comparisonOperation MUST be a constant value from
@@ -129,7 +129,7 @@ public interface SheetConditionalFormatting { * When the formula result is true, the cell is highlighted.
*
* <p>
- * The type of the created format condition is {@link ConditionalFormattingRule#CONDITION_FORMULA}
+ * The type of the created format condition is {@link ConditionType#FORMULA}
* </p>
* @param formula the formula to evaluate. MUST be a Boolean function.
*/
|