Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have defined a class with operations, and the operations are used in several sequence diagrams.

Is there a way I can find out how many sequence diagrams are using one particular operation?

share|improve this question

2 Answers

up vote 1 down vote accepted

If I understand you correctly you should be able to do the following:

  1. Expand your class in the 'Project Browser' to see operations
  2. Right click on the operation and choose "Find in all diagrams..." from context menu

Here is the screenshot:

enter image description here

share|improve this answer
I don't have the context menu item of "Find in all diagrams". Which version of EA are you running? I am still on 8.3, wait for my company to upgrade me. – hardywang Feb 8 at 14:02
I am using 9.0. I think this feature was there for a while though. In my case I created operation first, and then I used it in sequence diagram. Not sure if that matters. – Sebastian K Feb 8 at 14:56
The name of the command may have changed, but the shortcut will be the same: Ctrl+U – chimp Feb 12 at 4:53

I can't remember now if EA 8 included the facility to create project browser scripts, ie ones that can be called via a right-click in the project browser. This is available in EA 9 and EA 10.

If it's there in EA 8, you can create such a script to perform the lookup. Offhand, you'd need to look in the tables t_operation, t_connectortag and t_connector to find the references.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.