Book a Demo

Author Topic: How to get fully qualified class name in RTF  (Read 2439 times)

arunpsmn

  • EA Novice
  • *
  • Posts: 3
  • Karma: +0/-0
    • View Profile
How to get fully qualified class name in RTF
« on: November 04, 2009, 03:01:07 am »
Hi,
I have reverse engineered my java source code and I have created quite a few class and sequence diagrams from it. Now I am trying to generate RTF documentation for some of the packages containing these diagrams. In the resulting documentation where the detailed information of class is provided, it does not give the fully qualified name of class - ie, "com.abc.def.MyClass". Instead it just outputs "MyClass".

The only way I know to fix is to put manually, the fully qualified name in alias property and then have the rtf generated. Is there an automatic way to get the fully qualified class name? Please help.

- Arun
« Last Edit: November 04, 2009, 03:33:54 am by arunpsmn »

arunpsmn

  • EA Novice
  • *
  • Posts: 3
  • Karma: +0/-0
    • View Profile
Re: How to get fully qualified class name in RTF
« Reply #1 on: November 04, 2009, 04:29:57 am »
This is simple (now that I stumbled on it!). Just need to use {Element.FullName} instead of {Element.Name} in the template.

- Arun