Class ContextVariable<T>
java.lang.Object
com.suncode.pwfl.workflow.component.ContextVariable<T>
Context variable used within components to enable functional-like style of components.
Component creator can define 1+ context variables. Those variables can then be used as function
parameters (in functions, that are parameters of this component).
- Author:
- Cezary Kozar 12 lip 2016
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionContextVariable
(String id, LocalizedString name, LocalizedString description, Type<T> type, boolean hidden) -
Method Summary
-
Field Details
-
PREFIX
- See Also:
-
-
Constructor Details
-
ContextVariable
public ContextVariable(String id, LocalizedString name, LocalizedString description, Type<T> type, boolean hidden)
-
-
Method Details
-
getId
Returns context variable id prefixed withcontext:
-
getType
Returns context variable type. -
getName
Returns context variable name. -
getDescription
Returns context variable description. -
getHidden
public boolean getHidden()Returns if context variable is hidden
-