Package de.xima.fc.workflow.taglib.model
Class BaseDoUntilLoopProps
- java.lang.Object
-
- de.xima.fc.workflow.taglib.model.BaseDoUntilLoopProps
-
- All Implemented Interfaces:
IDescriptionProviding,INameProviding,Serializable
- Direct Known Subclasses:
BaseMultipleDoUntilLoopTestProps
public class BaseDoUntilLoopProps extends Object implements INameProviding, IDescriptionProviding, Serializable
Base class for common properties used by do-until loop nodes. Useful e.g. for plugins that what to implement a custom do-until loop that should behave similarly to a builtin do-until loop, but with a different loop condition test.- Since:
- 8.2.0
- Author:
- XIMA MEDIA GmbH
- See Also:
- Serialized Form
-
-
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 BaseDoUntilLoopProps()
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description StringgetBeschreibung()Deprecated.UsegetDescription().StringgetDescription()StringgetLabelNo()StringgetLabelYes()StringgetName()voidsetDescription(String description)voidsetLabelNo(String labelNo)voidsetLabelYes(String labelYes)voidsetName(String name)
-
-
-
Method Detail
-
getBeschreibung
@Deprecated public final String getBeschreibung()
Deprecated.UsegetDescription().- Specified by:
getBeschreibungin interfaceIDescriptionProviding- Returns:
- The same as
getDescription().
-
getDescription
public final String getDescription()
- Specified by:
getDescriptionin interfaceIDescriptionProviding- Returns:
- A human-readable description for this object.
-
getLabelNo
@Nullable public String getLabelNo()
- Returns:
- The label that is shown on the
nobranch. Defaults to the localized version of the wordno.
-
getLabelYes
@Nullable public String getLabelYes()
- Returns:
- The label that is shown on the
yesbranch. Defaults to the localized version of the wordyes.
-
getName
public String getName()
- Specified by:
getNamein interfaceINameProviding- Returns:
- The name of this object.
-
setDescription
public final void setDescription(String description)
- Parameters:
description- An arbitrary description for this action, given by the user.
-
setLabelNo
public void setLabelNo(String labelNo)
- Parameters:
labelNo- The label that is shown on thenobranch. Defaults to the localized version of the wordno.
-
setLabelYes
public void setLabelYes(String labelYes)
- Parameters:
labelYes- The label that is shown on theyesbranch. Defaults to the localized version of the wordyes.
-
setName
public void setName(String name)
- Parameters:
name- Name of this loop, for identifying the loop within placeholders.
-
-