mirror of https://github.com/apache/poi.git
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:
parent
13065c6b4c
commit
b2d6118eeb
|
@ -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) {
|
||||
|
|
|
@ -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.
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue