public interface PlannableItemVisitor
<p>GOF Visitor Pattern. Allows to apply arbitrary code on the planning table structure of the CMMN engine run-time model.</p>
| Modifier and Type | Method and Description | 
|---|---|
void | 
cleanup(PlanItem planItem,
       TransitionData transitionData)
Called once after all structure objects have been visited. 
 | 
void | 
enter(PlannableItem plannableItem,
     TransitionData transitionData)
Called for each plannable item just before the item is visited. 
 | 
void | 
exit(PlannableItem plannableItem,
    TransitionData transitionData)
Called for each plannable item just after the item has been visited. 
 | 
void | 
init(PlanItem planItem,
    TransitionData transitionData)
Called once before any other calls in this interface. 
 | 
void init(PlanItem planItem, TransitionData transitionData)
Called once before any other calls in this interface.
planItem - the case plan model (the root).transitionData - optional evaluation context.void enter(PlannableItem plannableItem, TransitionData transitionData)
Called for each plannable item just before the item is visited.
plannableItem - the plannable item of interest.transitionData - optional evaluation context.void exit(PlannableItem plannableItem, TransitionData transitionData)
Called for each plannable item just after the item has been visited.
plannableItem - the plan item of interest.transitionData - optional evaluation context.void cleanup(PlanItem planItem, TransitionData transitionData)
Called once after all structure objects have been visited.
planItem - the case plan item (the root).transitionData - optional evaluation context.Copyright © 2010 - 2019 edorasware ag. All Rights Reserved.