Book a Demo

Author Topic: Connector Labels Visibility  (Read 5137 times)

kuantumphoenix

  • EA Novice
  • *
  • Posts: 5
  • Karma: +0/-0
    • View Profile
Connector Labels Visibility
« on: July 18, 2012, 11:37:40 pm »
I seem to struggle to get EA to show the label of my connectors, thus if I draw a used by connection between two objects, the label "used by" is automatically displayed.  What am I missing?

qwerty

  • EA Guru
  • *****
  • Posts: 13584
  • Karma: +397/-301
  • I'm no guru at all
    • View Profile
Re: Connector Labels Visibility
« Reply #1 on: July 19, 2012, 12:03:49 am »
I suspect this is a stereotype if it displays <<used by>>

q.

kuantumphoenix

  • EA Novice
  • *
  • Posts: 5
  • Karma: +0/-0
    • View Profile
Re: Connector Labels Visibility
« Reply #2 on: July 19, 2012, 06:12:09 pm »
Yes, but I do not get the connector to display that. It would be nice for when it is drawn, the connector stereotype is displayed so that other users of the diagram knows what that line means.

qwerty

  • EA Guru
  • *****
  • Posts: 13584
  • Karma: +397/-301
  • I'm no guru at all
    • View Profile
Re: Connector Labels Visibility
« Reply #3 on: July 19, 2012, 10:03:43 pm »
Check the diagram properties/Connectors/Show Stereotype Labels

q.

kuantumphoenix

  • EA Novice
  • *
  • Posts: 5
  • Karma: +0/-0
    • View Profile
Re: Connector Labels Visibility
« Reply #4 on: July 19, 2012, 10:14:18 pm »
Everything I could put my mouse on, was ticked, but to no avail.  I was wondering if there is a universal setting missing or do I have a bug?

qwerty

  • EA Guru
  • *****
  • Posts: 13584
  • Karma: +397/-301
  • I'm no guru at all
    • View Profile
Re: Connector Labels Visibility
« Reply #5 on: July 20, 2012, 12:23:48 am »
Check Settings/UML Types for existence of that stereotype. Maybe a shape script is active.

Or you have a loaded profile which slurps the stereotype with the same method.

q.

kuantumphoenix

  • EA Novice
  • *
  • Posts: 5
  • Karma: +0/-0
    • View Profile
Re: Connector Labels Visibility
« Reply #6 on: July 20, 2012, 12:30:17 am »
How do I check for any scripts.  I am using the Archimate notation.

qwerty

  • EA Guru
  • *****
  • Posts: 13584
  • Karma: +397/-301
  • I'm no guru at all
    • View Profile
Re: Connector Labels Visibility
« Reply #7 on: July 20, 2012, 01:08:13 am »
There you are. The Archimate UsedBy has the following script:
Code: [Select]
// ArchiMate_UsedBy, 10/11/2008

shape main
{
      noshadow=true;
      lineto(100,0);
}

label middlebottomlabel
{
      print("");
}

q.

kuantumphoenix

  • EA Novice
  • *
  • Posts: 5
  • Karma: +0/-0
    • View Profile
Re: Connector Labels Visibility
« Reply #8 on: July 20, 2012, 04:56:48 pm »
Thanks, but now how do I change the scripts to actually display all labels?

qwerty

  • EA Guru
  • *****
  • Posts: 13584
  • Karma: +397/-301
  • I'm no guru at all
    • View Profile
Re: Connector Labels Visibility
« Reply #9 on: July 20, 2012, 07:10:56 pm »
Either you change the profile or you use a simple Dependency and apply the stereotype manually.

q.