labs4capella / python4capella

Python for Capella
Eclipse Public License 2.0
52 stars 10 forks source link

The SequenceMessage.get_invoked_exchange() call a not existing Java method. #212

Closed ylussaud closed 2 weeks ago

ylussaud commented 6 months ago

This could be fixed by calling the query from the semantic browser:

exchanges = capella_query_by_name(self, 'Invoked Interaction', AbstractExchange)
if not exchanges:
    return None
else:
    return exchanges[0]