Package de.xima.fc.workflow.model.nodes
Class FcChangeFormValueProps
- java.lang.Object
-
- de.xima.fc.workflow.taglib.model.BaseActionProps
-
- de.xima.fc.workflow.model.nodes.FcChangeFormValueProps
-
- All Implemented Interfaces:
IDescriptionProviding
,INameProviding
,Serializable
public class FcChangeFormValueProps extends BaseActionProps implements Serializable
Model class for the change form value action (EWorkflowNodeType.FC_CHANGE_FORM_VALUE
).- Since:
- 7.0.0
- Author:
- XIMA MEDIA GmbH
- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class de.xima.fc.workflow.taglib.model.BaseActionProps
BaseActionProps.name
-
-
Field Summary
-
Fields inherited from interface de.xima.fc.entities.interfaces.IDescriptionProviding
ATTR_BESCHREIBUNG, ATTR_DESCRIPTION, COL_DESCRIPTION
-
Fields inherited from interface de.xima.fc.entities.interfaces.INameProviding
ATTR_NAME, COL_NAME
-
-
Constructor Summary
Constructors Constructor Description FcChangeFormValueProps()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<Setting<String>>
getFormValues()
List<Setting<String>>
getRepetitionSizes()
Gets a list of repeated form elements or containers with the new number of repetitions for that element or container.void
setFormValues(List<Setting<String>> formValues)
void
setRepetitionSizes(List<Setting<String>> repetitionSizes)
Gets a list of repeated form elements or containers with the new number of repetitions for that element or container.-
Methods inherited from class de.xima.fc.workflow.taglib.model.BaseActionProps
getBeschreibung, getColor, getDescription, getIcon, getName, setColor, setDescription, setIcon, setName
-
-
-
-
Method Detail
-
getFormValues
public List<Setting<String>> getFormValues()
- Returns:
- a list with the to change form values
-
setFormValues
public void setFormValues(List<Setting<String>> formValues)
- Parameters:
formValues
- a list with the to change form values
-
getRepetitionSizes
public List<Setting<String>> getRepetitionSizes()
Gets a list of repeated form elements or containers with the new number of repetitions for that element or container. Repetitions are deleted or added to match the configured number of repetitions.Each value must be a string with a valid base 10 representation of an integer.
- Returns:
- The number of repetitions to set for a repeated element or container.
-
setRepetitionSizes
public void setRepetitionSizes(List<Setting<String>> repetitionSizes)
Gets a list of repeated form elements or containers with the new number of repetitions for that element or container. Repetitions are deleted or added to match the configured number of repetitions.Each value must be a string with a valid base 10 representation of an integer.
- Parameters:
repetitionSizes
- The number of repetitions to set for a repeated element or container.
-
-