mirror of https://github.com/apache/poi.git
#61947 - Remove deprecated classes (POI 4.0.0)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1823894 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
9968e86b14
commit
bf8c0a9f58
|
@ -17,23 +17,12 @@
|
||||||
|
|
||||||
package org.apache.poi.ss.formula.udf;
|
package org.apache.poi.ss.formula.udf;
|
||||||
|
|
||||||
import org.apache.poi.ss.formula.atp.AnalysisToolPak;
|
|
||||||
import org.apache.poi.ss.formula.functions.FreeRefFunction;
|
import org.apache.poi.ss.formula.functions.FreeRefFunction;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Common interface for "Add-in" libraries and user defined function libraries.
|
* Common interface for "Add-in" libraries and user defined function libraries.
|
||||||
*/
|
*/
|
||||||
public interface UDFFinder {
|
public interface UDFFinder {
|
||||||
// FIXME: Findbugs error: IC_SUPERCLASS_USES_SUBCLASS_DURING_INITIALIZATION
|
|
||||||
/**
|
|
||||||
* Default UDFFinder implementation
|
|
||||||
*
|
|
||||||
* @deprecated use AggregatingUDFFinder.DEFAULT instead, deprecated in POI 3.15,
|
|
||||||
* scheduled for removable in POI 3.17
|
|
||||||
*/
|
|
||||||
@Deprecated
|
|
||||||
public static final UDFFinder DEFAULT = new AggregatingUDFFinder(AnalysisToolPak.instance);
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns executor by specified name. Returns <code>null</code> if the function name is unknown.
|
* Returns executor by specified name. Returns <code>null</code> if the function name is unknown.
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in New Issue