/**
* 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);
}
/**
/**
* 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);
}
/**
/**
* 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);
}
/**
/**
* 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.