public interface BpmnParseListener
AbstractBpmnParseListener
, which contains an empty implementation for all methods
and makes your implementation easier and more robust to future changes.Modifier and Type | Method and Description |
---|---|
void |
parseBoundaryConditionalEventDefinition(Element element,
boolean interrupting,
ActivityImpl conditionalActivity) |
void |
parseBoundaryErrorEventDefinition(Element errorEventDefinition,
boolean interrupting,
ActivityImpl activity,
ActivityImpl nestedErrorEventActivity) |
void |
parseBoundaryEscalationEventDefinition(Element escalationEventDefinition,
boolean interrupting,
ActivityImpl boundaryEventActivity) |
void |
parseBoundaryEvent(Element boundaryEventElement,
ScopeImpl scopeElement,
ActivityImpl nestedActivity) |
void |
parseBoundaryMessageEventDefinition(Element element,
boolean interrupting,
ActivityImpl messageActivity) |
void |
parseBoundarySignalEventDefinition(Element signalEventDefinition,
boolean interrupting,
ActivityImpl signalActivity) |
void |
parseBoundaryTimerEventDefinition(Element timerEventDefinition,
boolean interrupting,
ActivityImpl timerActivity) |
void |
parseBusinessRuleTask(Element businessRuleTaskElement,
ScopeImpl scope,
ActivityImpl activity) |
void |
parseCallActivity(Element callActivityElement,
ScopeImpl scope,
ActivityImpl activity) |
void |
parseCompensateEventDefinition(Element compensateEventDefinition,
ActivityImpl compensationActivity) |
void |
parseConditionalStartEventForEventSubprocess(Element element,
ActivityImpl conditionalActivity,
boolean interrupting) |
void |
parseEndEvent(Element endEventElement,
ScopeImpl scope,
ActivityImpl activity) |
void |
parseEventBasedGateway(Element eventBasedGwElement,
ScopeImpl scope,
ActivityImpl activity) |
void |
parseExclusiveGateway(Element exclusiveGwElement,
ScopeImpl scope,
ActivityImpl activity) |
void |
parseInclusiveGateway(Element inclusiveGwElement,
ScopeImpl scope,
ActivityImpl activity) |
void |
parseIntermediateCatchEvent(Element intermediateEventElement,
ScopeImpl scope,
ActivityImpl activity) |
void |
parseIntermediateConditionalEventDefinition(Element conditionalEventDefinition,
ActivityImpl conditionalActivity) |
void |
parseIntermediateMessageCatchEventDefinition(Element messageEventDefinition,
ActivityImpl nestedActivity) |
void |
parseIntermediateSignalCatchEventDefinition(Element signalEventDefinition,
ActivityImpl signalActivity) |
void |
parseIntermediateThrowEvent(Element intermediateEventElement,
ScopeImpl scope,
ActivityImpl activity) |
void |
parseIntermediateTimerEventDefinition(Element timerEventDefinition,
ActivityImpl timerActivity) |
void |
parseManualTask(Element manualTaskElement,
ScopeImpl scope,
ActivityImpl activity) |
void |
parseMultiInstanceLoopCharacteristics(Element activityElement,
Element multiInstanceLoopCharacteristicsElement,
ActivityImpl activity) |
void |
parseParallelGateway(Element parallelGwElement,
ScopeImpl scope,
ActivityImpl activity) |
void |
parseProcess(Element processElement,
ProcessDefinitionEntity processDefinition) |
void |
parseProperty(Element propertyElement,
VariableDeclaration variableDeclaration,
ActivityImpl activity) |
void |
parseReceiveTask(Element receiveTaskElement,
ScopeImpl scope,
ActivityImpl activity) |
void |
parseRootElement(Element rootElement,
List<ProcessDefinitionEntity> processDefinitions) |
void |
parseScriptTask(Element scriptTaskElement,
ScopeImpl scope,
ActivityImpl activity) |
void |
parseSendTask(Element sendTaskElement,
ScopeImpl scope,
ActivityImpl activity) |
void |
parseSequenceFlow(Element sequenceFlowElement,
ScopeImpl scopeElement,
TransitionImpl transition) |
void |
parseServiceTask(Element serviceTaskElement,
ScopeImpl scope,
ActivityImpl activity) |
void |
parseStartEvent(Element startEventElement,
ScopeImpl scope,
ActivityImpl startEventActivity) |
void |
parseSubProcess(Element subProcessElement,
ScopeImpl scope,
ActivityImpl activity) |
void |
parseTask(Element taskElement,
ScopeImpl scope,
ActivityImpl activity) |
void |
parseTransaction(Element transactionElement,
ScopeImpl scope,
ActivityImpl activity) |
void |
parseUserTask(Element userTaskElement,
ScopeImpl scope,
ActivityImpl activity) |
void parseProcess(Element processElement, ProcessDefinitionEntity processDefinition)
void parseStartEvent(Element startEventElement, ScopeImpl scope, ActivityImpl startEventActivity)
void parseExclusiveGateway(Element exclusiveGwElement, ScopeImpl scope, ActivityImpl activity)
void parseInclusiveGateway(Element inclusiveGwElement, ScopeImpl scope, ActivityImpl activity)
void parseParallelGateway(Element parallelGwElement, ScopeImpl scope, ActivityImpl activity)
void parseScriptTask(Element scriptTaskElement, ScopeImpl scope, ActivityImpl activity)
void parseServiceTask(Element serviceTaskElement, ScopeImpl scope, ActivityImpl activity)
void parseBusinessRuleTask(Element businessRuleTaskElement, ScopeImpl scope, ActivityImpl activity)
void parseTask(Element taskElement, ScopeImpl scope, ActivityImpl activity)
void parseManualTask(Element manualTaskElement, ScopeImpl scope, ActivityImpl activity)
void parseUserTask(Element userTaskElement, ScopeImpl scope, ActivityImpl activity)
void parseEndEvent(Element endEventElement, ScopeImpl scope, ActivityImpl activity)
void parseBoundaryTimerEventDefinition(Element timerEventDefinition, boolean interrupting, ActivityImpl timerActivity)
void parseBoundaryErrorEventDefinition(Element errorEventDefinition, boolean interrupting, ActivityImpl activity, ActivityImpl nestedErrorEventActivity)
void parseSubProcess(Element subProcessElement, ScopeImpl scope, ActivityImpl activity)
void parseCallActivity(Element callActivityElement, ScopeImpl scope, ActivityImpl activity)
void parseProperty(Element propertyElement, VariableDeclaration variableDeclaration, ActivityImpl activity)
void parseSequenceFlow(Element sequenceFlowElement, ScopeImpl scopeElement, TransitionImpl transition)
void parseSendTask(Element sendTaskElement, ScopeImpl scope, ActivityImpl activity)
void parseMultiInstanceLoopCharacteristics(Element activityElement, Element multiInstanceLoopCharacteristicsElement, ActivityImpl activity)
void parseIntermediateTimerEventDefinition(Element timerEventDefinition, ActivityImpl timerActivity)
void parseRootElement(Element rootElement, List<ProcessDefinitionEntity> processDefinitions)
void parseReceiveTask(Element receiveTaskElement, ScopeImpl scope, ActivityImpl activity)
void parseIntermediateSignalCatchEventDefinition(Element signalEventDefinition, ActivityImpl signalActivity)
void parseIntermediateMessageCatchEventDefinition(Element messageEventDefinition, ActivityImpl nestedActivity)
void parseBoundarySignalEventDefinition(Element signalEventDefinition, boolean interrupting, ActivityImpl signalActivity)
void parseEventBasedGateway(Element eventBasedGwElement, ScopeImpl scope, ActivityImpl activity)
void parseTransaction(Element transactionElement, ScopeImpl scope, ActivityImpl activity)
void parseCompensateEventDefinition(Element compensateEventDefinition, ActivityImpl compensationActivity)
void parseIntermediateThrowEvent(Element intermediateEventElement, ScopeImpl scope, ActivityImpl activity)
void parseIntermediateCatchEvent(Element intermediateEventElement, ScopeImpl scope, ActivityImpl activity)
void parseBoundaryEvent(Element boundaryEventElement, ScopeImpl scopeElement, ActivityImpl nestedActivity)
void parseBoundaryMessageEventDefinition(Element element, boolean interrupting, ActivityImpl messageActivity)
void parseBoundaryEscalationEventDefinition(Element escalationEventDefinition, boolean interrupting, ActivityImpl boundaryEventActivity)
void parseBoundaryConditionalEventDefinition(Element element, boolean interrupting, ActivityImpl conditionalActivity)
void parseIntermediateConditionalEventDefinition(Element conditionalEventDefinition, ActivityImpl conditionalActivity)
void parseConditionalStartEventForEventSubprocess(Element element, ActivityImpl conditionalActivity, boolean interrupting)
Copyright © 2019. All rights reserved.