Interface PlanItem
-
- All Superinterfaces:
CmmnElement
,CmmnModelElementInstance
,ModelElementInstance
- All Known Implementing Classes:
PlanItemImpl
public interface PlanItem extends CmmnElement
- Author:
- Roman Smirnov
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description PlanItemDefinition
getDefinition()
Collection<Sentry>
getEntryCriteria()
Collection<Sentry>
getEntryCriterias()
Deprecated.Collection<EntryCriterion>
getEntryCriterions()
Collection<Sentry>
getExitCriteria()
Collection<Sentry>
getExitCriterias()
Deprecated.Collection<ExitCriterion>
getExitCriterions()
ItemControl
getItemControl()
String
getName()
void
setDefinition(PlanItemDefinition definition)
void
setItemControl(ItemControl itemControl)
void
setName(String name)
-
Methods inherited from interface org.camunda.bpm.model.cmmn.instance.CmmnElement
getDescription, getDocumentations, getExtensionElements, getId, setDescription, setExtensionElements, setId
-
Methods inherited from interface org.camunda.bpm.model.xml.instance.ModelElementInstance
addChildElement, getAttributeValue, getAttributeValueNs, getChildElementsByType, getChildElementsByType, getDomElement, getElementType, getModelInstance, getParentElement, getRawTextContent, getTextContent, getUniqueChildElementByNameNs, getUniqueChildElementByType, insertElementAfter, removeAttribute, removeAttributeNs, removeChildElement, replaceChildElement, replaceWithElement, setAttributeValue, setAttributeValue, setAttributeValue, setAttributeValueNs, setAttributeValueNs, setAttributeValueNs, setTextContent, setUniqueChildElementByNameNs, updateAfterReplacement
-
-
-
-
Method Detail
-
getName
String getName()
-
setName
void setName(String name)
-
getDefinition
PlanItemDefinition getDefinition()
-
setDefinition
void setDefinition(PlanItemDefinition definition)
-
getEntryCriterias
@Deprecated Collection<Sentry> getEntryCriterias()
Deprecated.
-
getExitCriterias
@Deprecated Collection<Sentry> getExitCriterias()
Deprecated.
-
getEntryCriteria
Collection<Sentry> getEntryCriteria()
- Returns:
- an immutable collection
-
getExitCriteria
Collection<Sentry> getExitCriteria()
- Returns:
- an immutable collection
-
getEntryCriterions
Collection<EntryCriterion> getEntryCriterions()
-
getExitCriterions
Collection<ExitCriterion> getExitCriterions()
-
getItemControl
ItemControl getItemControl()
-
setItemControl
void setItemControl(ItemControl itemControl)
-
-