Package io.keikai.model.sys.formula
Interface FunctionResolver
-
- All Known Implementing Classes:
FunctionResolverEx
,FunctionResolverImpl
public interface FunctionResolver
Interface to glue POI function mechanism to zkoss xel function mechanism.- Author:
- henrichen
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DependencyTracker
getDependencyTracker()
Return the associatedDependencyTracker
.org.zkoss.xel.FunctionMapper
getFunctionMapper()
Return the associatedFunctionMapper
.UDFFinder
getUDFFinder()
Return the associatedUDFFinder
.
-
-
-
Method Detail
-
getUDFFinder
UDFFinder getUDFFinder()
Return the associatedUDFFinder
.- Returns:
- the associated
UDFFinder
.
-
getFunctionMapper
org.zkoss.xel.FunctionMapper getFunctionMapper()
Return the associatedFunctionMapper
.- Returns:
- the associated
FunctionMapper
.
-
getDependencyTracker
DependencyTracker getDependencyTracker()
Return the associatedDependencyTracker
.- Returns:
- the associated
DependencyTracker
.
-
-