update javadoc

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1890646 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
PJ Fanning 2021-06-09 20:22:06 +00:00
parent 313b7acbc5
commit 13ac67d18d
4 changed files with 11 additions and 11 deletions

View File

@ -1265,12 +1265,12 @@ public class SXSSFWorkbook implements Workbook {
/**
* Register a new toolpack in this workbook.
*
* @param toopack the toolpack to register
* @param toolpack the toolpack to register
*/
@Override
public void addToolPack(UDFFinder toopack)
public void addToolPack(UDFFinder toolpack)
{
_wb.addToolPack(toopack);
_wb.addToolPack(toolpack);
}
/**

View File

@ -2146,11 +2146,11 @@ public class XSSFWorkbook extends POIXMLDocument implements Workbook, Date1904Su
/**
* Register a new toolpack in this workbook.
*
* @param toopack the toolpack to register
* @param toolpack the toolpack to register
*/
@Override
public void addToolPack(UDFFinder toopack){
_udfFinder.add(toopack);
public void addToolPack(UDFFinder toolpack){
_udfFinder.add(toolpack);
}
/**

View File

@ -2127,12 +2127,12 @@ public final class HSSFWorkbook extends POIDocument implements Workbook {
/**
* Register a new toolpack in this workbook.
*
* @param toopack the toolpack to register
* @param toolpack the toolpack to register
*/
@Override
public void addToolPack(UDFFinder toopack) {
public void addToolPack(UDFFinder toolpack) {
AggregatingUDFFinder udfs = (AggregatingUDFFinder) _udfFinder;
udfs.add(toopack);
udfs.add(toolpack);
}
/**

View File

@ -546,9 +546,9 @@ public interface Workbook extends Closeable, Iterable<Sheet> {
/**
* Register a new toolpack in this workbook.
*
* @param toopack the toolpack to register
* @param toolpack the toolpack to register
*/
void addToolPack(UDFFinder toopack);
void addToolPack(UDFFinder toolpack);
/**
* Whether the application shall perform a full recalculation when the workbook is opened.