Class ContextDelegateFunctionFactory
- java.lang.Object
- 
- com.inductiveautomation.ignition.common.expressions.ContextDelegateFunctionFactory
 
- 
- All Implemented Interfaces:
- FunctionFactory
 
 public class ContextDelegateFunctionFactory extends java.lang.Object implements 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 Constructor Description ContextDelegateFunctionFactory(CommonContext context)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description protected FunctionFactoryf()java.util.Set<java.lang.String>getCategories()Return a sequence of categories to organize functions.FunctiongetFunction(java.lang.String name)Look up the function with the given name.java.util.Set<java.lang.String>getFunctionNames()Returns a set of all the registered function names.java.util.Set<java.lang.String>getFunctionsInCategory(java.lang.String name)
 
- 
- 
- 
Constructor Detail- 
ContextDelegateFunctionFactorypublic ContextDelegateFunctionFactory(CommonContext context) 
 
- 
 - 
Method Detail- 
fprotected FunctionFactory f() 
 - 
getFunctionpublic Function getFunction(java.lang.String name) Description 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
 
 - 
getFunctionNamespublic java.util.Set<java.lang.String> getFunctionNames() Description copied from interface:FunctionFactoryReturns a set of all the registered function names. Used for syntax highlighting in the designer.- Specified by:
- getFunctionNamesin interface- FunctionFactory
 
 - 
getCategoriespublic java.util.Set<java.lang.String> getCategories() Description 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
 
 - 
getFunctionsInCategorypublic java.util.Set<java.lang.String> getFunctionsInCategory(java.lang.String name) - Specified by:
- getFunctionsInCategoryin interface- FunctionFactory
 
 
- 
 
-