Book a Demo

Author Topic: Sequence Diagrams and Timing Details  (Read 3873 times)

Piqcked

  • EA Novice
  • *
  • Posts: 16
  • Karma: +0/-0
    • View Profile
Sequence Diagrams and Timing Details
« on: June 11, 2015, 11:59:53 pm »
Hello,

I am scripting a tool in C# to read my E.A sequence diagrams and I have troubles figuring out how to read some of the diagram's informations.

For exemple, in this picture, we have some exemples of these Timing Details ({t...t+3}, {0...3} and {d...d*3}) :



I have not been able to find in the user manual in which class do these attributes belong. I thought they were connectors at first, but from all the attributes of the connector class, none of them seem to correspond with the Timing Details.

Thanks for you help, I hope I'have been clear enought and if not, I am open to any question.  :)

qwerty

  • EA Guru
  • *****
  • Posts: 13584
  • Karma: +397/-301
  • I'm no guru at all
    • View Profile
Re: Sequence Diagrams and Timing Details
« Reply #1 on: June 12, 2015, 12:22:02 am »
t_connector.styleex has something like
Code: [Select]
SEQDC=a;SEQDO=c;SEQTC=d;SEQTO=e;DCBM=b;for the timing details (a..e equiv. to input fields top down)

q.
« Last Edit: June 12, 2015, 12:23:12 am by qwerty »

Piqcked

  • EA Novice
  • *
  • Posts: 16
  • Karma: +0/-0
    • View Profile
Re: Sequence Diagrams and Timing Details
« Reply #2 on: June 12, 2015, 12:53:25 am »
Thanks a lot qwerty, I was able to reach this information using

Code: [Select]
theConnector.StyleEx.ToString() !
How and where could you find the CODE in t_connector.styleex ?

qwerty

  • EA Guru
  • *****
  • Posts: 13584
  • Karma: +397/-301
  • I'm no guru at all
    • View Profile
Re: Sequence Diagrams and Timing Details
« Reply #3 on: June 12, 2015, 05:11:20 am »
It's a simple string and the values are semicolon separated.

q.