Skip to content

Commit

Permalink
Report allElements properly
Browse files Browse the repository at this point in the history
  • Loading branch information
JanBliznicenko committed Dec 5, 2024
1 parent 50b0c70 commit fdcecd7
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions repository/OpenPonk-BPMN/OPBPMNNodeModel.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,13 @@ OPBPMNNodeModel >> addFlow: aFlow [
ifFalse: [ self changed ]
]

{ #category : 'accessing' }
OPBPMNNodeModel >> allElements [

^ super allElements , self flows
, (self flows flatCollect: [ :each | each allElements ])
]

{ #category : 'accessing' }
OPBPMNNodeModel >> connected [
owner ifNil: [ ^ #() ].
Expand Down

0 comments on commit fdcecd7

Please sign in to comment.