Fix javadoc warnings

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1691084 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Nick Burch 2015-07-14 21:22:44 +00:00
parent e0f6ff5ca1
commit f581c54c5a
2 changed files with 4 additions and 4 deletions

View 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) * @return encoded size of the formula tokens (does not include 2 bytes for ushort length)
*/ */
protected static int getFormulaSize(Formula formula) { protected static int getFormulaSize(Formula formula) {

View File

@ -83,7 +83,7 @@ public interface SheetConditionalFormatting {
* <p> * <p>
* The created conditional formatting rule compares a cell value * The created conditional formatting rule compares a cell value
* to a formula calculated result, using the specified operator. * 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> * </p>
* *
* @param comparisonOperation - MUST be a constant value from * @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 * Create a conditional formatting rule that compares a cell value
* to a formula calculated result, using an operator * * to a formula calculated result, using an operator *
* <p> * <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> * </p>
* *
* @param comparisonOperation MUST be a constant value from * @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. * When the formula result is true, the cell is highlighted.
* *
* <p> * <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> * </p>
* @param formula the formula to evaluate. MUST be a Boolean function. * @param formula the formula to evaluate. MUST be a Boolean function.
*/ */