Class ContextDelegateFunctionFactory
java.lang.Object
com.inductiveautomation.ignition.common.expressions.ContextDelegateFunctionFactory
- All Implemented Interfaces:
- FunctionFactory
Many custom function factories get cached, but when delegating to the factory provided by the context, that shouldn't
 happen. This class can be used as the parent of those other factories, and will look up the context factory fresh
 each time.
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionprotected FunctionFactoryf()Return a sequence of categories to organize functions.getFunction(String name) Look up the function with the given name.Returns a set of all the registered function names.getFunctionsInCategory(String name) 
- 
Constructor Details- 
ContextDelegateFunctionFactory
 
- 
- 
Method Details- 
f
- 
getFunctionDescription copied from interface:FunctionFactoryLook up the function with the given name. This function will be in a state that is ready to use in an expression, meaning that it may be a cloned copy for functions that keep state.- Specified by:
- getFunctionin interface- FunctionFactory
- Returns:
- The function, or null
 
- 
getFunctionNamesDescription copied from interface:FunctionFactoryReturns a set of all the registered function names. Used for syntax highlighting in the designer.- Specified by:
- getFunctionNamesin interface- FunctionFactory
 
- 
getCategoriesDescription copied from interface:FunctionFactoryReturn a sequence of categories to organize functions. Used to generate the popup menu in the designer. Will automatically organize into submenus based on forward-slash in path.- Specified by:
- getCategoriesin interface- FunctionFactory
 
- 
getFunctionsInCategory- Specified by:
- getFunctionsInCategoryin interface- FunctionFactory
 
 
-