mirror of https://github.com/apache/poi.git
update javadoc
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1890646 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
313b7acbc5
commit
13ac67d18d
|
@ -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);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue