]> source.dussan.org Git - poi.git/commitdiff
Fix javadoc warnings
authorNick Burch <nick@apache.org>
Tue, 14 Jul 2015 21:22:44 +0000 (21:22 +0000)
committerNick Burch <nick@apache.org>
Tue, 14 Jul 2015 21:22:44 +0000 (21:22 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1691084 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/poi/hssf/record/CFRuleBase.java
src/java/org/apache/poi/ss/usermodel/SheetConditionalFormatting.java

index 449594414fab19b5e87b50568fd243b85882ef48..28c21c8d9e468a347b47c6030e28a92c883fb66a 100644 (file)
@@ -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) {
index 7f54f301582c7078b528ad4f4bc77db95590cc0b..92e64124a425cb6ab73b2281c9a5fb62536a510f 100644 (file)
@@ -83,7 +83,7 @@ public interface SheetConditionalFormatting {
      * <p>\r
      * The created conditional formatting rule compares a cell value\r
      * to a formula calculated result, using the specified operator.\r
-     * The type  of the created condition is {@link ConditionalFormattingRule#CONDITION_CELL_VALUE_IS}\r
+     * The type  of the created condition is {@link ConditionType#CELL_VALUE_IS}\r
      * </p>\r
      *\r
      * @param comparisonOperation - MUST be a constant value from\r
@@ -112,7 +112,7 @@ public interface SheetConditionalFormatting {
      * Create a conditional formatting rule that compares a cell value\r
      * to a formula calculated result, using an operator     *\r
      * <p>\r
-      * The type  of the created condition is {@link ConditionalFormattingRule#CONDITION_CELL_VALUE_IS}\r
+      * The type  of the created condition is {@link ConditionType#CELL_VALUE_IS}\r
      * </p>\r
      *\r
      * @param comparisonOperation  MUST be a constant value from\r
@@ -129,7 +129,7 @@ public interface SheetConditionalFormatting {
      *  When the formula result is true, the cell is highlighted.\r
      *\r
      * <p>\r
-     *  The type of the created format condition is  {@link ConditionalFormattingRule#CONDITION_FORMULA}\r
+     *  The type of the created format condition is  {@link ConditionType#FORMULA}\r
      * </p>\r
      * @param formula   the formula to evaluate. MUST be a Boolean function.\r
      */\r