Package de.xima.fc.workflow.taglib.model
Class BaseForEachLoopProps
- java.lang.Object
-
- de.xima.fc.workflow.taglib.model.BaseForEachLoopProps
-
- All Implemented Interfaces:
IDescriptionProviding,INameProviding,Serializable
- Direct Known Subclasses:
FcForEachLoopProps
public class BaseForEachLoopProps extends Object implements INameProviding, IDescriptionProviding, Serializable
Base class for common properties used by for-each loop nodes. Useful e.g. for plugins that what to implement a custom for-each loop that should behave similarly to a builtin for-each loop, but with a different list of items.- 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 BaseForEachLoopProps()
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description StringgetBeschreibung()Deprecated.UsegetDescription().StringgetDescription()StringgetName()voidsetDescription(String description)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.
-
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.
-
setName
public void setName(String name)
- Parameters:
name- Name of this loop, for identifying the loop within placeholders.
-
-