Package de.xima.aspose.processor.fn
Class FunctionHandlerFactory
- java.lang.Object
 - 
- de.xima.aspose.processor.fn.FunctionHandlerFactory
 
 
- 
public final class FunctionHandlerFactory extends Object
Contains the mapping between Word fill function names and the corresponding handlers for executing those functions.- Author:
 - XIMA MEDIA GmbH
 
 
- 
- 
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static IFunctionHandler<IPhase1State>phase1forName(String name)static IFunctionHandler<IPhase2State>phase2forName(String name)static IFunctionHandler<IRootState>rootFunctionForName(String name) 
 - 
 
- 
- 
Method Detail
- 
phase1forName
public static IFunctionHandler<IPhase1State> phase1forName(String name)
- Parameters:
 name- Name of a function.- Returns:
 - The handler for executing the phase1 function of the given name.
 
 
- 
phase2forName
public static IFunctionHandler<IPhase2State> phase2forName(String name)
- Parameters:
 name- Name of a function.- Returns:
 - The handler for executing the phase2 function of the given name.
 
 
- 
rootFunctionForName
public static IFunctionHandler<IRootState> rootFunctionForName(String name)
- Parameters:
 name- Name of a function.- Returns:
 - The handler for evaluating the root function with the given name.
 
 
 - 
 
 -