Class FcSwitchCaseBean
java.lang.Object
de.xima.fc.gui.common.bean.ABooleanExpressionBean
de.xima.fc.workflow.designer.bean.nodes.FcSwitchCaseBean
- All Implemented Interfaces:
IElementPropertiesBean<FcSwitchCaseProps,
,WorkflowNode> INodePropertiesBean<FcSwitchCaseProps>
,Serializable
@ViewScoped
@Named
public class FcSwitchCaseBean
extends ABooleanExpressionBean
implements INodePropertiesBean<FcSwitchCaseProps>, Serializable
Bean for editing formcycle
EWorkflowNodeType.FC_MULTIPLE_CONDITION
nodes.- Author:
- XIMA MEDIA GmbH
- See Also:
-
Field Summary
Fields inherited from class de.xima.fc.gui.common.bean.ABooleanExpressionBean
localeBean
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
Called when the user clicks on the add button to add a new condition.void
Called each time when the properties panel for a certain workflow element is loaded.void
removeCaseValue
(int index) Called when the user clicks on the remove button on a condition.void
Called each time when the data of the selected node was edited externally.Methods inherited from class de.xima.fc.gui.common.bean.ABooleanExpressionBean
completeCustomExpression, findNewVariableName, getOrderedCombinationTypes, getOrderedMatchConditions, lintCustomExpression
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface de.xima.fc.interfaces.workflow.elements.IElementPropertiesBean
updateCurrentTask
Methods inherited from interface de.xima.fc.interfaces.workflow.nodes.INodePropertiesBean
retrieveCurrentProperties
-
Constructor Details
-
FcSwitchCaseBean
public FcSwitchCaseBean()
-
-
Method Details
-
addCaseValue
public void addCaseValue()Called when the user clicks on the add button to add a new condition. -
prepareViewForElement
public void prepareViewForElement(IElementPropInitParams<FcSwitchCaseProps> params) throws Exception Description copied from interface:IElementPropertiesBean
Called each time when the properties panel for a certain workflow element is loaded. This method is passed the workflow element and the properties model, and should perform whatever initialization is necessary in order for the user to start editing the properties.- Specified by:
prepareViewForElement
in interfaceIElementPropertiesBean<FcSwitchCaseProps,
WorkflowNode> - Parameters:
params
- The current element to be edited and its properties. You may store a reference to these, modify them, and return them whenIElementPropertiesBean.retrieveCurrentProperties(Object)
is called.- Throws:
Exception
- When the initialization failed. If an exception is thrown, the user is shown an error indicating that the properties cannot be edited.
-
removeCaseValue
public void removeCaseValue(int index) Called when the user clicks on the remove button on a condition.- Parameters:
index
- Index of the condition to remove.
-
updateCurrentProperties
public void updateCurrentProperties(IElementUpdateCurrentPropsParams<FcSwitchCaseProps> params) throws Exception Description copied from interface:IElementPropertiesBean
Called each time when the data of the selected node was edited externally. Normally this does not happen. This only happens when the element handler returned a custom client handler (seeIElementHandler.getJavaScript(boolean)
) that invoked an external custom params update from the flowchart. If this bean stored the data in a field duringIElementPropertiesBean.prepareViewForElement(IElementPropInitParams)
, it should update that field.- Specified by:
updateCurrentProperties
in interfaceIElementPropertiesBean<FcSwitchCaseProps,
WorkflowNode> - Parameters:
params
- Params with the old and new data.- Throws:
Exception
- When the data could not be updated. This exception is caught and an error message is shown to the user.
-
getAllVariables
- Specified by:
getAllVariables
in classABooleanExpressionBean
-